Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 987 Bytes

File metadata and controls

34 lines (25 loc) · 987 Bytes

Datastream

Properties

Name Type Description Notes
id str
description str
sensor_id int
observed_property str
unit_of_measurement str
created_at str

Example

from sensorbucket.models.datastream import Datastream

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

# convert the object into a dict
datastream_dict = datastream_instance.to_dict()
# create an instance of Datastream from a dict
datastream_from_dict = Datastream.from_dict(datastream_dict)

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