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.
9322 9323 9324 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 9322 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
9320 9321 9322 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 9320 def documents @documents end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9327 9328 9329 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 9327 def update!(**args) @documents = args[:documents] if args.key?(:documents) end |