Current status of the device OS.
| Name | Type | Description | Notes |
|---|---|---|---|
| image | str | Version of the OS image. | |
| image_digest | str | The digest of the OS image (e.g. sha256:a0...). |
from flightctl.models.device_os_status import DeviceOsStatus
# TODO update the JSON string below
json = "{}"
# create an instance of DeviceOsStatus from a JSON string
device_os_status_instance = DeviceOsStatus.from_json(json)
# print the JSON string representation of the object
print(DeviceOsStatus.to_json())
# convert the object into a dict
device_os_status_dict = device_os_status_instance.to_dict()
# create an instance of DeviceOsStatus from a dict
device_os_status_from_dict = DeviceOsStatus.from_dict(device_os_status_dict)