Class: Google::Apis::ClassroomV1::ListGuardianInvitationsResponse

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/classroom_v1/classes.rb,
generated/google/apis/classroom_v1/representations.rb,
generated/google/apis/classroom_v1/representations.rb

Overview

Response when listing guardian invitations.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ListGuardianInvitationsResponse

Returns a new instance of ListGuardianInvitationsResponse



1545
1546
1547
# File 'generated/google/apis/classroom_v1/classes.rb', line 1545

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#guardian_invitationsArray<Google::Apis::ClassroomV1::GuardianInvitation>

Guardian invitations that matched the list request. Corresponds to the JSON property guardianInvitations



1537
1538
1539
# File 'generated/google/apis/classroom_v1/classes.rb', line 1537

def guardian_invitations
  @guardian_invitations
end

#next_page_tokenString

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

Returns:

  • (String)


1543
1544
1545
# File 'generated/google/apis/classroom_v1/classes.rb', line 1543

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1550
1551
1552
1553
# File 'generated/google/apis/classroom_v1/classes.rb', line 1550

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