class Google::Apis::ClassroomV1::ListGuardianInvitationsResponse
Response when listing guardian invitations.
Attributes
guardian_invitations[RW]
Guardian
invitations that matched the list request. Corresponds to the JSON property `guardianInvitations` @return [Array<Google::Apis::ClassroomV1::GuardianInvitation>]
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 1350 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 1355 def update!(**args) @guardian_invitations = args[:guardian_invitations] if args.key?(:guardian_invitations) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end