Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionQueryConfigDocumentQuerySource
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionQueryConfigDocumentQuerySource
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2/classes.rb,
lib/google/apis/dialogflow_v2/representations.rb,
lib/google/apis/dialogflow_v2/representations.rb
Overview
Document source settings. Supported features: SMART_REPLY, SMART_COMPOSE.
Instance Attribute Summary collapse
-
#documents ⇒ Array<String>
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionQueryConfigDocumentQuerySource
constructor
A new instance of GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionQueryConfigDocumentQuerySource.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionQueryConfigDocumentQuerySource
Returns a new instance of GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionQueryConfigDocumentQuerySource.
11367 11368 11369 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 11367 def initialize(**args) update!(**args) end |
Instance Attribute Details
#documents ⇒ Array<String>
Required. Knowledge documents to query from. Format: projects//locations//
knowledgeBases//documents/
. Currently, at most 5 documents are supported.
Corresponds to the JSON property documents
11365 11366 11367 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 11365 def documents @documents end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
11372 11373 11374 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 11372 def update!(**args) @documents = args[:documents] if args.key?(:documents) end |