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.
5006 5007 5008 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 5006 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
4999 5000 5001 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 4999 def conversations @conversations end |
#next_page_token ⇒ String
Pagination token, if not returned indicates the last page.
Corresponds to the JSON property nextPageToken
5004 5005 5006 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 5004 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5011 5012 5013 5014 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 5011 def update!(**args) @conversations = args[:conversations] if args.key?(:conversations) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |