Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.34 KB

File metadata and controls

32 lines (23 loc) · 1.34 KB

DeviceInformationGetDevice200ResponseUser

Properties

Name Type Description Notes
email str [optional]
id str [optional]
is_archived int [optional]
name str [optional]

Example

from kandji.models.device_information_get_device200_response_user import DeviceInformationGetDevice200ResponseUser

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

# convert the object into a dict
device_information_get_device200_response_user_dict = device_information_get_device200_response_user_instance.to_dict()
# create an instance of DeviceInformationGetDevice200ResponseUser from a dict
device_information_get_device200_response_user_from_dict = DeviceInformationGetDevice200ResponseUser.from_dict(device_information_get_device200_response_user_dict)

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