A sync issue
Name | Type | Description | Notes |
---|---|---|---|
id | str | The account user identifier | [optional] |
str | The email address of the user concerned by this sync issue | [optional] | |
reason | str | The reason why the account cannot be synced | [optional] |
from flat_api.models.class_details_issues_sync_inner import ClassDetailsIssuesSyncInner
# TODO update the JSON string below
json = "{}"
# create an instance of ClassDetailsIssuesSyncInner from a JSON string
class_details_issues_sync_inner_instance = ClassDetailsIssuesSyncInner.from_json(json)
# print the JSON string representation of the object
print ClassDetailsIssuesSyncInner.to_json()
# convert the object into a dict
class_details_issues_sync_inner_dict = class_details_issues_sync_inner_instance.to_dict()
# create an instance of ClassDetailsIssuesSyncInner from a dict
class_details_issues_sync_inner_form_dict = class_details_issues_sync_inner.from_dict(class_details_issues_sync_inner_dict)