Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionQueryConfigDialogflowQuerySource
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionQueryConfigDialogflowQuerySource
- 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
Dialogflow source setting. Supported feature: DIALOGFLOW_ASSIST.
Instance Attribute Summary collapse
-
#agent ⇒ String
Required.
-
#human_agent_side_config ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionQueryConfigDialogflowQuerySourceHumanAgentSideConfig
The configuration used for human agent side Dialogflow assist suggestion.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionQueryConfigDialogflowQuerySource
constructor
A new instance of GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionQueryConfigDialogflowQuerySource.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionQueryConfigDialogflowQuerySource
Returns a new instance of GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionQueryConfigDialogflowQuerySource.
10451 10452 10453 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10451 def initialize(**args) update!(**args) end |
Instance Attribute Details
#agent ⇒ String
Required. The name of a Dialogflow virtual agent used for end user side intent
detection and suggestion. Format: projects//locations//agent. When multiple
agents are allowed in the same Dialogflow project.
Corresponds to the JSON property agent
10444 10445 10446 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10444 def agent @agent end |
#human_agent_side_config ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionQueryConfigDialogflowQuerySourceHumanAgentSideConfig
The configuration used for human agent side Dialogflow assist suggestion.
Corresponds to the JSON property humanAgentSideConfig
10449 10450 10451 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10449 def human_agent_side_config @human_agent_side_config end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10456 10457 10458 10459 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10456 def update!(**args) @agent = args[:agent] if args.key?(:agent) @human_agent_side_config = args[:human_agent_side_config] if args.key?(:human_agent_side_config) end |