state property

String? state
getter/setter pair

The workflow pipeline stage. Possible string values are:

  • "STATE_UNSPECIFIED" : No state specified. This should never be returned.
  • "CREATED" : The Submission has been created.
  • "TURNED_IN" : The student has turned in an assigned document, which may or may not be a template.
  • "RETURNED" : The teacher has returned the assigned document to the student.
  • "RECLAIMED_BY_STUDENT" : The student turned in the assigned document, and then chose to "unsubmit" the assignment, giving the student control again as the owner.
  • "STUDENT_EDITED_AFTER_TURN_IN" : The student edited their submission after turning it in. Currently, only used by Questions, when the student edits their answer.

Implementation

core.String? state;