Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.13 KB

File metadata and controls

36 lines (27 loc) · 1.13 KB

SensorItem

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.sensor_item import SensorItem

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

# convert the object into a dict
sensor_item_dict = sensor_item_instance.to_dict()
# create an instance of SensorItem from a dict
sensor_item_from_dict = SensorItem.from_dict(sensor_item_dict)

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