class Google::Apis::ClassroomV1::SubmissionHistory

The history of the submission. This currently includes state and grade histories.

Attributes

grade_history[RW]

The history of each grade on this submission. Corresponds to the JSON property `gradeHistory` @return [Google::Apis::ClassroomV1::GradeHistory]

state_history[RW]

The history of each state this submission has been in. Corresponds to the JSON property `stateHistory` @return [Google::Apis::ClassroomV1::StateHistory]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/classroom_v1/classes.rb, line 2053
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/classroom_v1/classes.rb, line 2058
def update!(**args)
  @grade_history = args[:grade_history] if args.key?(:grade_history)
  @state_history = args[:state_history] if args.key?(:state_history)
end