Class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ListConversationsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ListConversationsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1/classes.rb,
lib/google/apis/discoveryengine_v1/representations.rb,
lib/google/apis/discoveryengine_v1/representations.rb
Overview
Response for ListConversations method.
Instance Attribute Summary collapse
-
#conversations ⇒ Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Conversation>
All the Conversations for a given data store.
-
#next_page_token ⇒ String
Pagination token, if not returned indicates the last page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1ListConversationsResponse
constructor
A new instance of GoogleCloudDiscoveryengineV1ListConversationsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1ListConversationsResponse
Returns a new instance of GoogleCloudDiscoveryengineV1ListConversationsResponse.
5834 5835 5836 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 5834 def initialize(**args) update!(**args) end |
Instance Attribute Details
#conversations ⇒ Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Conversation>
All the Conversations for a given data store.
Corresponds to the JSON property conversations
5827 5828 5829 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 5827 def conversations @conversations end |
#next_page_token ⇒ String
Pagination token, if not returned indicates the last page.
Corresponds to the JSON property nextPageToken
5832 5833 5834 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 5832 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5839 5840 5841 5842 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 5839 def update!(**args) @conversations = args[:conversations] if args.key?(:conversations) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |