Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.57 KB

DeviceInformationGetDeviceDetails200ResponseHardwareOverview.md

File metadata and controls

31 lines (22 loc) · 1.57 KB

DeviceInformationGetDeviceDetails200ResponseHardwareOverview

Properties

Name Type Description Notes
uuid str [optional]
serial_number str [optional]
model_identifier str [optional]

Example

from kandji.models.device_information_get_device_details200_response_hardware_overview import DeviceInformationGetDeviceDetails200ResponseHardwareOverview

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

# convert the object into a dict
device_information_get_device_details200_response_hardware_overview_dict = device_information_get_device_details200_response_hardware_overview_instance.to_dict()
# create an instance of DeviceInformationGetDeviceDetails200ResponseHardwareOverview from a dict
device_information_get_device_details200_response_hardware_overview_from_dict = DeviceInformationGetDeviceDetails200ResponseHardwareOverview.from_dict(device_information_get_device_details200_response_hardware_overview_dict)

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