Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.99 KB

File metadata and controls

34 lines (25 loc) · 1.99 KB

DeviceInformationGetDeviceDetails200Response

Properties

Name Type Description Notes
cellular DeviceInformationGetDeviceDetails200ResponseCellular [optional]
general DeviceInformationGetDeviceDetails200ResponseGeneral [optional]
hardware DeviceInformationGetDeviceDetails200ResponseHardware [optional]
management DeviceInformationGetDeviceDetails200ResponseManagement [optional]
security DeviceInformationGetDeviceDetails200ResponseSecurity [optional]
tags object [optional]

Example

from kandji.models.device_information_get_device_details200_response import DeviceInformationGetDeviceDetails200Response

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

# convert the object into a dict
device_information_get_device_details200_response_dict = device_information_get_device_details200_response_instance.to_dict()
# create an instance of DeviceInformationGetDeviceDetails200Response from a dict
device_information_get_device_details200_response_from_dict = DeviceInformationGetDeviceDetails200Response.from_dict(device_information_get_device_details200_response_dict)

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