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
SyncError Object ### Description The SyncError object is used to represent a sync error. ### Usage Example List from the GET Sync Errors endpoint.
Properties
Name
Type
Description
Notes
first_seen
datetime
The time when this error was first seen.
last_seen
datetime
The time when this error was most recently seen.
error_message
str
The error message associated with the sync error.
app_id
UUID
The ID of the app that the error occured for.
[optional]
Example
fromopal_security.models.sync_errorimportSyncError# TODO update the JSON string belowjson="{}"# create an instance of SyncError from a JSON stringsync_error_instance=SyncError.from_json(json)
# print the JSON string representation of the objectprint(SyncError.to_json())
# convert the object into a dictsync_error_dict=sync_error_instance.to_dict()
# create an instance of SyncError from a dictsync_error_from_dict=SyncError.from_dict(sync_error_dict)