| Name | Type | Description | Notes |
|---|---|---|---|
| active | bool | ||
| current_device | bool | ||
| device | Device |
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)