Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.06 KB

File metadata and controls

34 lines (25 loc) · 1.06 KB

SensorUpdate

Properties

Name Type Description Notes
alias str [optional]
description str [optional]
postprocess bool [optional]
postprocessscript str [optional]
units str [optional]
variablename str [optional]

Example

from upstream_api_client.models.sensor_update import SensorUpdate

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

# convert the object into a dict
sensor_update_dict = sensor_update_instance.to_dict()
# create an instance of SensorUpdate from a dict
sensor_update_from_dict = SensorUpdate.from_dict(sensor_update_dict)

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