class Google::Apis::ClassroomV1::ListGuardiansResponse

Response when listing guardians.

Attributes

guardians[RW]

Guardians on this page of results that met the criteria specified in the request. Corresponds to the JSON property `guardians` @return [Array<Google::Apis::ClassroomV1::Guardian>]

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]

Public Class Methods

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