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.



2631
2632
2633
# File 'lib/google/apis/chat_v1/classes.rb', line 2631

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

Instance Attribute Details

#next_page_tokenString

A token that can be sent as pageToken to retrieve the next page of results. If empty, there are no subsequent pages. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


2624
2625
2626
# File 'lib/google/apis/chat_v1/classes.rb', line 2624

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:



2629
2630
2631
# File 'lib/google/apis/chat_v1/classes.rb', line 2629

def spaces
  @spaces
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2636
2637
2638
2639
# File 'lib/google/apis/chat_v1/classes.rb', line 2636

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