Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionQueryConfigContextFilterSettings
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionQueryConfigContextFilterSettings
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2beta1/classes.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb
Overview
Settings that determine how to filter recent conversation context when generating suggestions.
Instance Attribute Summary collapse
-
#drop_handoff_messages ⇒ Boolean
(also: #drop_handoff_messages?)
If set to true, the last message from virtual agent (hand off message) and the message before it (trigger message of hand off) are dropped.
-
#drop_ivr_messages ⇒ Boolean
(also: #drop_ivr_messages?)
If set to true, all messages from ivr stage are dropped.
-
#drop_virtual_agent_messages ⇒ Boolean
(also: #drop_virtual_agent_messages?)
If set to true, all messages from virtual agent are dropped.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionQueryConfigContextFilterSettings
constructor
A new instance of GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionQueryConfigContextFilterSettings.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionQueryConfigContextFilterSettings
Returns a new instance of GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionQueryConfigContextFilterSettings.
14272 14273 14274 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14272 def initialize(**args) update!(**args) end |
Instance Attribute Details
#drop_handoff_messages ⇒ Boolean Also known as: drop_handoff_messages?
If set to true, the last message from virtual agent (hand off message) and the
message before it (trigger message of hand off) are dropped.
Corresponds to the JSON property dropHandoffMessages
14257 14258 14259 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14257 def @drop_handoff_messages end |
#drop_ivr_messages ⇒ Boolean Also known as: drop_ivr_messages?
If set to true, all messages from ivr stage are dropped.
Corresponds to the JSON property dropIvrMessages
14263 14264 14265 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14263 def @drop_ivr_messages end |
#drop_virtual_agent_messages ⇒ Boolean Also known as: drop_virtual_agent_messages?
If set to true, all messages from virtual agent are dropped.
Corresponds to the JSON property dropVirtualAgentMessages
14269 14270 14271 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14269 def @drop_virtual_agent_messages end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
14277 14278 14279 14280 14281 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14277 def update!(**args) @drop_handoff_messages = args[:drop_handoff_messages] if args.key?(:drop_handoff_messages) @drop_ivr_messages = args[:drop_ivr_messages] if args.key?(:drop_ivr_messages) @drop_virtual_agent_messages = args[:drop_virtual_agent_messages] if args.key?(:drop_virtual_agent_messages) end |