Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.56 KB

AssignmentSubmissionComment.md

File metadata and controls

36 lines (27 loc) · 1.56 KB

AssignmentSubmissionComment

Feedback comment added to an assignment submission

Properties

Name Type Description Notes
id str The comment unique identifier [optional]
user str The author unique identifier [optional]
submission str The submission unique identifier [optional]
var_date datetime The date when the comment was posted [optional]
modification_date datetime The date of the last comment modification [optional]
comment str The comment text [optional]
unread bool True if the comment is unread by the current user [optional]

Example

from flat_api.models.assignment_submission_comment import AssignmentSubmissionComment

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

# convert the object into a dict
assignment_submission_comment_dict = assignment_submission_comment_instance.to_dict()
# create an instance of AssignmentSubmissionComment from a dict
assignment_submission_comment_form_dict = assignment_submission_comment.from_dict(assignment_submission_comment_dict)

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