Skip to content

Latest commit

History

History
30 lines (21 loc) 路 1.19 KB

AssignmentSubmissionCommentCreation.md

File metadata and controls

30 lines (21 loc) 路 1.19 KB

AssignmentSubmissionCommentCreation

Creation of a assignment submission comment

Properties

Name Type Description Notes
comment str The comment text

Example

from flat_api.models.assignment_submission_comment_creation import AssignmentSubmissionCommentCreation

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

# convert the object into a dict
assignment_submission_comment_creation_dict = assignment_submission_comment_creation_instance.to_dict()
# create an instance of AssignmentSubmissionCommentCreation from a dict
assignment_submission_comment_creation_form_dict = assignment_submission_comment_creation.from_dict(assignment_submission_comment_creation_dict)

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