Class: Google::Apis::ChatV1::ListSpacesResponse

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/chat_v1/classes.rb,
lib/google/apis/chat_v1/representations.rb,
lib/google/apis/chat_v1/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListSpacesResponse

Returns a new instance of ListSpacesResponse.



2445
2446
2447
# File 'lib/google/apis/chat_v1/classes.rb', line 2445

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

Instance Attribute Details

#next_page_tokenString

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

Returns:

  • (String)


2438
2439
2440
# File 'lib/google/apis/chat_v1/classes.rb', line 2438

def next_page_token
  @next_page_token
end

#spacesArray<Google::Apis::ChatV1::Space>

List of spaces in the requested (or first) page. Corresponds to the JSON property spaces

Returns:



2443
2444
2445
# File 'lib/google/apis/chat_v1/classes.rb', line 2443

def spaces
  @spaces
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2450
2451
2452
2453
# File 'lib/google/apis/chat_v1/classes.rb', line 2450

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