Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 981 Bytes

DeviceConfigStatus.md

File metadata and controls

29 lines (20 loc) · 981 Bytes

DeviceConfigStatus

Properties

Name Type Description Notes
rendered_version str Version of the device rendered config.

Example

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]