DependencySyncStatus represents the synchronization fingerprints for external dependencies of a device, captured at render time.
| Name | Type | Description | Notes |
|---|---|---|---|
| config_refs | List[DependencySyncConfigRefStatus] | Per-config-provider fingerprint and last update time, set when the device renders. | [optional] |
from flightctl.models.dependency_sync_status import DependencySyncStatus
# TODO update the JSON string below
json = "{}"
# create an instance of DependencySyncStatus from a JSON string
dependency_sync_status_instance = DependencySyncStatus.from_json(json)
# print the JSON string representation of the object
print(DependencySyncStatus.to_json())
# convert the object into a dict
dependency_sync_status_dict = dependency_sync_status_instance.to_dict()
# create an instance of DependencySyncStatus from a dict
dependency_sync_status_from_dict = DependencySyncStatus.from_dict(dependency_sync_status_dict)