Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.15 KB

File metadata and controls

31 lines (22 loc) · 1.15 KB

DeviceSummaryStatus

A summary of the health of the device hardware and operating system resources.

Properties

Name Type Description Notes
status DeviceSummaryStatusType
info str Human readable information detailing the last device status transition. [optional]

Example

from flightctl.models.device_summary_status import DeviceSummaryStatus

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

# convert the object into a dict
device_summary_status_dict = device_summary_status_instance.to_dict()
# create an instance of DeviceSummaryStatus from a dict
device_summary_status_from_dict = DeviceSummaryStatus.from_dict(device_summary_status_dict)

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