Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.13 KB

ResourceSensorSensor.md

File metadata and controls

31 lines (22 loc) · 1.13 KB

ResourceSensorSensor

Properties

Name Type Description Notes
name str The identifying name of the Waylay Sensor
version str The sensor version [optional]
properties object Default sensor property configuration. [optional]

Example

from waylay.services.resources.models.resource_sensor_sensor import ResourceSensorSensor

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

# convert the object into a dict
resource_sensor_sensor_dict = resource_sensor_sensor_instance.to_dict()
# create an instance of ResourceSensorSensor from a dict
resource_sensor_sensor_form_dict = resource_sensor_sensor.from_dict(resource_sensor_sensor_dict)

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