Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 1.06 KB

AssignmentSubmissionUpdate.md

File metadata and controls

28 lines (22 loc) · 1.06 KB

FlatApi::AssignmentSubmissionUpdate

Properties

Name Type Description Notes
attachments Array<ClassAttachmentCreation> [optional]
submit Boolean If `true`, the submission will be marked as done [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]
grade Float Optional grade. If unset, no grade was set. [optional]
exercises_ids Array<String> The ids of exercises when they need to be in a specific order [optional]
_return Boolean If `true`, the submission will be marked as done [optional]

Example

require 'flat_api'

instance = FlatApi::AssignmentSubmissionUpdate.new(
  attachments: null,
  submit: null,
  draft_grade: null,
  grade: null,
  exercises_ids: null,
  _return: null
)