Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.14 KB

DeviceSystemInfo.md

File metadata and controls

32 lines (23 loc) · 1.14 KB

DeviceSystemInfo

DeviceSystemInfo is a set of ids/uuids to uniquely identify the device.

Properties

Name Type Description Notes
architecture str The Architecture reported by the device.
boot_id str Boot ID reported by the device.
operating_system str The Operating System reported by the device.

Example

from flightctl.models.device_system_info import DeviceSystemInfo

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

# convert the object into a dict
device_system_info_dict = device_system_info_instance.to_dict()
# create an instance of DeviceSystemInfo from a dict
device_system_info_from_dict = DeviceSystemInfo.from_dict(device_system_info_dict)

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