Class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaListConversationsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaListConversationsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1beta/classes.rb,
lib/google/apis/discoveryengine_v1beta/representations.rb,
lib/google/apis/discoveryengine_v1beta/representations.rb
Overview
Response for ListConversations method.
Instance Attribute Summary collapse
-
#conversations ⇒ Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaConversation>
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) ⇒ GoogleCloudDiscoveryengineV1betaListConversationsResponse
constructor
A new instance of GoogleCloudDiscoveryengineV1betaListConversationsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaListConversationsResponse
Returns a new instance of GoogleCloudDiscoveryengineV1betaListConversationsResponse.
10314 10315 10316 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 10314 def initialize(**args) update!(**args) end |
Instance Attribute Details
#conversations ⇒ Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaConversation>
All the Conversations for a given data store.
Corresponds to the JSON property conversations
10307 10308 10309 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 10307 def conversations @conversations end |
#next_page_token ⇒ String
Pagination token, if not returned indicates the last page.
Corresponds to the JSON property nextPageToken
10312 10313 10314 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 10312 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10319 10320 10321 10322 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 10319 def update!(**args) @conversations = args[:conversations] if args.key?(:conversations) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |