Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1020 Bytes

File metadata and controls

32 lines (23 loc) · 1020 Bytes

SyncStatus

Provider/source sync status

Properties

Name Type Description Notes
is_running bool
last_successful_sync datetime [optional]
last_sync_status TaskAggregatedStatusEnum [optional]

Example

from authentik_client.models.sync_status import SyncStatus

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

# convert the object into a dict
sync_status_dict = sync_status_instance.to_dict()
# create an instance of SyncStatus from a dict
sync_status_from_dict = SyncStatus.from_dict(sync_status_dict)

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