Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.18 KB

File metadata and controls

35 lines (26 loc) · 1.18 KB

MeasurementUpdate

Properties

Name Type Description Notes
sensorid int [optional]
collectiontime datetime [optional]
geometry str [optional]
measurementvalue float [optional]
variablename str [optional]
variabletype str [optional]
description str [optional]

Example

from upstream_api_client.models.measurement_update import MeasurementUpdate

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

# convert the object into a dict
measurement_update_dict = measurement_update_instance.to_dict()
# create an instance of MeasurementUpdate from a dict
measurement_update_from_dict = MeasurementUpdate.from_dict(measurement_update_dict)

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