Class: Google::Apis::ClassroomV1::ListInvitationsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ClassroomV1::ListInvitationsResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/classroom_v1/classes.rb,
lib/google/apis/classroom_v1/representations.rb,
lib/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.
Constructor Details
#initialize(**args) ⇒ ListInvitationsResponse
Returns a new instance of ListInvitationsResponse.
1768 1769 1770 |
# File 'lib/google/apis/classroom_v1/classes.rb', line 1768 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
1760 1761 1762 |
# File 'lib/google/apis/classroom_v1/classes.rb', line 1760 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
1766 1767 1768 |
# File 'lib/google/apis/classroom_v1/classes.rb', line 1766 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1773 1774 1775 1776 |
# File 'lib/google/apis/classroom_v1/classes.rb', line 1773 def update!(**args) @invitations = args[:invitations] if args.key?(:invitations) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |