Class: Google::Apis::ClassroomV1::ListInvitationsResponse

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 invitations.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListInvitationsResponse

Returns a new instance of ListInvitationsResponse.



1403
1404
1405
# File 'generated/google/apis/classroom_v1/classes.rb', line 1403

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

Instance Attribute Details

#invitationsArray<Google::Apis::ClassroomV1::Invitation>

Invitations that match the list request. Corresponds to the JSON property invitations



1395
1396
1397
# File 'generated/google/apis/classroom_v1/classes.rb', line 1395

def invitations
  @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)


1401
1402
1403
# File 'generated/google/apis/classroom_v1/classes.rb', line 1401

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1408
1409
1410
1411
# File 'generated/google/apis/classroom_v1/classes.rb', line 1408

def update!(**args)
  @invitations = args[:invitations] if args.key?(:invitations)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end