Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 965 Bytes

File metadata and controls

29 lines (20 loc) · 965 Bytes

SensorCreateResponse

Properties

Name Type Description Notes
id int

Example

from upstream_api_client.models.sensor_create_response import SensorCreateResponse

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

# convert the object into a dict
sensor_create_response_dict = sensor_create_response_instance.to_dict()
# create an instance of SensorCreateResponse from a dict
sensor_create_response_from_dict = SensorCreateResponse.from_dict(sensor_create_response_dict)

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