Name |
Type |
Description |
Notes |
rendered_version |
str |
Version of the device rendered config. |
|
from flightctl.models.device_config_status import DeviceConfigStatus
# TODO update the JSON string below
json = "{}"
# create an instance of DeviceConfigStatus from a JSON string
device_config_status_instance = DeviceConfigStatus.from_json(json)
# print the JSON string representation of the object
print(DeviceConfigStatus.to_json())
# convert the object into a dict
device_config_status_dict = device_config_status_instance.to_dict()
# create an instance of DeviceConfigStatus from a dict
device_config_status_from_dict = DeviceConfigStatus.from_dict(device_config_status_dict)
[Back to Model list] [Back to API list] [Back to README]