Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1011 Bytes

File metadata and controls

29 lines (20 loc) · 1011 Bytes

DeviceListResponse

Properties

Name Type Description Notes
devices List[Device] List of returned devices. [optional]

Example

from sunshine_conversations_client.model.device_list_response import DeviceListResponse

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

# convert the object into a dict
device_list_response_dict = device_list_response_instance.to_dict()
# create an instance of DeviceListResponse from a dict
device_list_response_from_dict = DeviceListResponse.from_dict(device_list_response_dict)

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