Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 926 Bytes

File metadata and controls

32 lines (23 loc) · 926 Bytes

SensorGroup

Properties

Name Type Description Notes
id int
name str
description str
sensors List[int]

Example

from sensorbucket.models.sensor_group import SensorGroup

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

# convert the object into a dict
sensor_group_dict = sensor_group_instance.to_dict()
# create an instance of SensorGroup from a dict
sensor_group_from_dict = SensorGroup.from_dict(sensor_group_dict)

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