Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 992 Bytes

OTAStatusList.md

File metadata and controls

30 lines (21 loc) · 992 Bytes

OTAStatusList

Properties

Name Type Description Notes
devices List[OTAStatus] [optional]
has_more bool Indicates whether more items are available [optional]

Example

from notehub_py.models.ota_status_list import OTAStatusList

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

# convert the object into a dict
ota_status_list_dict = ota_status_list_instance.to_dict()
# create an instance of OTAStatusList from a dict
ota_status_list_from_dict = OTAStatusList.from_dict(ota_status_list_dict)

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