Skip to content

Latest commit

聽

History

History
30 lines (24 loc) 路 1.21 KB

File metadata and controls

30 lines (24 loc) 路 1.21 KB

FlatApi::AssignmentSubmissionUpdate

Properties

Name Type Description Notes
attachments Array<ClassAttachmentCreation> [optional]
playback Array<AssignmentSubmissionPlayback> [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 to the teacher, and is copied 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 returned to the student (teachers only) [optional]

Example

require 'flat_api'

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