You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Number of changes introduced by this ResourceSync update.
error_count
int
Number of errors encountered by this ResourceSync update.
Example
fromflightctl.models.resource_sync_completed_detailsimportResourceSyncCompletedDetails# TODO update the JSON string belowjson="{}"# create an instance of ResourceSyncCompletedDetails from a JSON stringresource_sync_completed_details_instance=ResourceSyncCompletedDetails.from_json(json)
# print the JSON string representation of the objectprint(ResourceSyncCompletedDetails.to_json())
# convert the object into a dictresource_sync_completed_details_dict=resource_sync_completed_details_instance.to_dict()
# create an instance of ResourceSyncCompletedDetails from a dictresource_sync_completed_details_from_dict=ResourceSyncCompletedDetails.from_dict(resource_sync_completed_details_dict)