Class: Google::Apis::ClassroomV1::ListInvitationsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ClassroomV1::ListInvitationsResponse
- 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
-
#invitations ⇒ Array<Google::Apis::ClassroomV1::Invitation>
Invitations that match the list request.
-
#next_page_token ⇒ String
Token identifying the next page of results to return.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListInvitationsResponse
constructor
A new instance of ListInvitationsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListInvitationsResponse
Returns a new instance of ListInvitationsResponse
1338 1339 1340 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 1338 def initialize(**args) update!(**args) end |
Instance Attribute Details
#invitations ⇒ Array<Google::Apis::ClassroomV1::Invitation>
Invitations that match the list request.
Corresponds to the JSON property invitations
1330 1331 1332 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 1330 def invitations @invitations end |
#next_page_token ⇒ String
Token identifying the next page of results to return. If empty, no further
results are available.
Corresponds to the JSON property nextPageToken
1336 1337 1338 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 1336 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1343 1344 1345 1346 |
# File 'generated/google/apis/classroom_v1/classes.rb', line 1343 def update!(**args) @invitations = args[:invitations] if args.key?(:invitations) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |