Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.14 KB

File metadata and controls

34 lines (25 loc) · 1.14 KB

CreateDeviceRequest

Properties

Name Type Description Notes
code str
description str [optional]
latitude float [optional]
longitude float [optional]
location_description str [optional]
properties object [optional]

Example

from sensorbucket.models.create_device_request import CreateDeviceRequest

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

# convert the object into a dict
create_device_request_dict = create_device_request_instance.to_dict()
# create an instance of CreateDeviceRequest from a dict
create_device_request_from_dict = CreateDeviceRequest.from_dict(create_device_request_dict)

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