class Google::Apis::ClassroomV1::ListTeachersResponse

Response when listing teachers.

Attributes

next_page_token[RW]

Token identifying the next page of results to return. If empty, no further results are available. Corresponds to the JSON property `nextPageToken` @return [String]

teachers[RW]

Teachers who match the list request. Corresponds to the JSON property `teachers` @return [Array<Google::Apis::ClassroomV1::Teacher>]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/classroom_v1/classes.rb, line 445
def update!(**args)
  @teachers = args[:teachers] if args.key?(:teachers)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end