| Name |
Type |
Description |
Notes |
| code |
str |
|
|
| description |
str |
|
[optional] |
| latitude |
float |
|
[optional] |
| longitude |
float |
|
[optional] |
| location_description |
str |
|
[optional] |
| properties |
object |
|
[optional] |
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]