Skip to content

Latest commit

 

History

History
48 lines (39 loc) · 2.01 KB

File metadata and controls

48 lines (39 loc) · 2.01 KB

DeviceInformationUpdateDevice200Response

Properties

Name Type Description Notes
agent_installed int [optional]
agent_version str [optional]
asset_tag str [optional]
blueprint_id str [optional]
blueprint_name str [optional]
device_id str [optional]
device_name str [optional]
first_enrollment str [optional]
is_missing int [optional]
is_removed int [optional]
last_check_in str [optional]
last_enrollment str [optional]
lost_mode_status str [optional]
mdm_enabled int [optional]
model str [optional]
os_version str [optional]
platform str [optional]
serial_number str [optional]
tags object [optional]
user str [optional]

Example

from kandji.models.device_information_update_device200_response import DeviceInformationUpdateDevice200Response

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

# convert the object into a dict
device_information_update_device200_response_dict = device_information_update_device200_response_instance.to_dict()
# create an instance of DeviceInformationUpdateDevice200Response from a dict
device_information_update_device200_response_from_dict = DeviceInformationUpdateDevice200Response.from_dict(device_information_update_device200_response_dict)

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