class Google::Apis::ChatV1::ListSpacesResponse

Attributes

next_page_token[RW]

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` @return [String]

spaces[RW]

List of spaces in the requested (or first) page. Corresponds to the JSON property `spaces` @return [Array<Google::Apis::ChatV1::Space>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/chat_v1/classes.rb, line 2301
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/chat_v1/classes.rb, line 2306
def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @spaces = args[:spaces] if args.key?(:spaces)
end