Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.31 KB

File metadata and controls

33 lines (24 loc) · 1.31 KB

GetDatastream200ResponseData

Properties

Name Type Description Notes
datastream Datastream [optional]
device Device [optional]
sensor Sensor [optional]
latest_measurement_value float [optional]
latest_measurement_timestamp datetime [optional]

Example

from sensorbucket.models.get_datastream200_response_data import GetDatastream200ResponseData

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

# convert the object into a dict
get_datastream200_response_data_dict = get_datastream200_response_data_instance.to_dict()
# create an instance of GetDatastream200ResponseData from a dict
get_datastream200_response_data_from_dict = GetDatastream200ResponseData.from_dict(get_datastream200_response_data_dict)

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