Class: Google::Apis::ChatV1::ListSpacesResponse
- Inherits:
-
Object
- Object
- Google::Apis::ChatV1::ListSpacesResponse
- Defined in:
- generated/google/apis/chat_v1/classes.rb,
generated/google/apis/chat_v1/representations.rb,
generated/google/apis/chat_v1/representations.rb
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
Continuation token to retrieve the next page of results.
-
#spaces ⇒ Array<Google::Apis::ChatV1::Space>
List of spaces in the requested (or first) page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListSpacesResponse
constructor
A new instance of ListSpacesResponse.
-
#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) ⇒ ListSpacesResponse
Returns a new instance of ListSpacesResponse.
570 571 572 |
# File 'generated/google/apis/chat_v1/classes.rb', line 570 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
Continuation token to retrieve the next page of results. It will be empty
for the last page of results. Tokens expire in an hour. An error is thrown
if an expired token is passed.
Corresponds to the JSON property nextPageToken
563 564 565 |
# File 'generated/google/apis/chat_v1/classes.rb', line 563 def next_page_token @next_page_token end |
#spaces ⇒ Array<Google::Apis::ChatV1::Space>
List of spaces in the requested (or first) page.
Corresponds to the JSON property spaces
568 569 570 |
# File 'generated/google/apis/chat_v1/classes.rb', line 568 def spaces @spaces end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
575 576 577 578 |
# File 'generated/google/apis/chat_v1/classes.rb', line 575 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @spaces = args[:spaces] if args.key?(:spaces) end |