Assignment Submission
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | Unique identifier of the submission | |
| state | AssignmentSubmissionState | ||
| classroom | str | Unique identifier of the classroom where the assignment was posted | |
| assignment | str | Unique identifier of the assignment | |
| creator | str | The User identifier of the student who created the submission | |
| creation_date | str | The date when the submission was created | |
| attachments | List[MediaAttachment] | ||
| submission_date | str | The date when the student submitted their work | [optional] |
| return_date | str | The date when the teacher returned the work | [optional] |
| return_creator | str | The User unique identifier of the teacher who returned the submission | [optional] |
| grade | float | Optional grade. If unset, no grade was set. | [optional] |
| draft_grade | float | Optional grade. If unset, no grade was set. This value is only visible by the teacher, and we will be set to `grade` once the teacher returns the submission | [optional] |
| max_points | float | Optional max points for the grade. If set, a corresponding `draftGrade` or `grade` will be set. | [optional] |
| exercises_ids | List[str] | The ids of exercises when they need to be in a specific order | [optional] |
| playback | List[AssignmentSubmissionPlaybackInner] | ||
| comments | AssignmentSubmissionComments | ||
| google_classroom | GoogleClassroomSubmission | [optional] | |
| microsoft_graph | MicrosoftGraphSubmission | [optional] | |
| lti | AssignmentSubmissionLti | [optional] |
from flat_api.models.assignment_submission import AssignmentSubmission
# TODO update the JSON string below
json = "{}"
# create an instance of AssignmentSubmission from a JSON string
assignment_submission_instance = AssignmentSubmission.from_json(json)
# print the JSON string representation of the object
print AssignmentSubmission.to_json()
# convert the object into a dict
assignment_submission_dict = assignment_submission_instance.to_dict()
# create an instance of AssignmentSubmission from a dict
assignment_submission_form_dict = assignment_submission.from_dict(assignment_submission_dict)