Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.26 KB

ClassDetailsIssuesSyncInner.md

File metadata and controls

32 lines (23 loc) · 1.26 KB

ClassDetailsIssuesSyncInner

A sync issue

Properties

Name Type Description Notes
id str The account user identifier [optional]
email str The email address of the user concerned by this sync issue [optional]
reason str The reason why the account cannot be synced [optional]

Example

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)

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