Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 897 Bytes

File metadata and controls

30 lines (21 loc) · 897 Bytes

DeviceStatus

Properties

Name Type Description Notes
browser str [optional]
os str [optional]

Example

from halo_client.models.device_status import DeviceStatus

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

# convert the object into a dict
device_status_dict = device_status_instance.to_dict()
# create an instance of DeviceStatus from a dict
device_status_from_dict = DeviceStatus.from_dict(device_status_dict)

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