Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 905 Bytes

File metadata and controls

31 lines (22 loc) · 905 Bytes

UserDevice

Properties

Name Type Description Notes
active bool
current_device bool
device Device

Example

from halo_client.models.user_device import UserDevice

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

# convert the object into a dict
user_device_dict = user_device_instance.to_dict()
# create an instance of UserDevice from a dict
user_device_from_dict = UserDevice.from_dict(user_device_dict)

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