Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.07 KB

DeviceUpdatedStatus.md

File metadata and controls

30 lines (21 loc) · 1.07 KB

DeviceUpdatedStatus

Properties

Name Type Description Notes
status DeviceUpdatedStatusType
info str Human readable information about the last device update transition. [optional]

Example

from flightctl.models.device_updated_status import DeviceUpdatedStatus

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

# convert the object into a dict
device_updated_status_dict = device_updated_status_instance.to_dict()
# create an instance of DeviceUpdatedStatus from a dict
device_updated_status_from_dict = DeviceUpdatedStatus.from_dict(device_updated_status_dict)

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