Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.23 KB

File metadata and controls

36 lines (27 loc) · 1.23 KB

GetSensorResponse

Properties

Name Type Description Notes
id int
alias str [optional]
description str [optional]
postprocess bool [optional]
postprocessscript str [optional]
units str [optional]
variablename str [optional]
statistics SensorStatistics [optional]

Example

from upstream_api_client.models.get_sensor_response import GetSensorResponse

# TODO update the JSON string below
json = "{}"
# create an instance of GetSensorResponse from a JSON string
get_sensor_response_instance = GetSensorResponse.from_json(json)
# print the JSON string representation of the object
print(GetSensorResponse.to_json())

# convert the object into a dict
get_sensor_response_dict = get_sensor_response_instance.to_dict()
# create an instance of GetSensorResponse from a dict
get_sensor_response_from_dict = GetSensorResponse.from_dict(get_sensor_response_dict)

[Back to Model list] [Back to API list] [Back to README]