| Name | Type | Description | Notes |
|---|---|---|---|
| devices | List[Device] | List of returned devices. | [optional] |
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)