class Google::Apis::ClassroomV1::StateHistory

The history of each state this submission has been in.

Attributes

actor_user_id[RW]

The teacher or student who made the change. Corresponds to the JSON property `actorUserId` @return [String]

state[RW]

The workflow pipeline stage. Corresponds to the JSON property `state` @return [String]

state_timestamp[RW]

When the submission entered this state. Corresponds to the JSON property `stateTimestamp` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/classroom_v1/classes.rb, line 1858
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 1863
def update!(**args)
  @actor_user_id = args[:actor_user_id] if args.key?(:actor_user_id)
  @state = args[:state] if args.key?(:state)
  @state_timestamp = args[:state_timestamp] if args.key?(:state_timestamp)
end