Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionTriggerSettings

Inherits:
Object
  • Object
show all
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 of suggestion trigger.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionTriggerSettings

Returns a new instance of GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionTriggerSettings.



13826
13827
13828
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 13826

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#no_small_talkBoolean Also known as: no_small_talk?

Do not trigger if last utterance is small talk. Corresponds to the JSON property noSmallTalk

Returns:

  • (Boolean)


13817
13818
13819
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 13817

def no_small_talk
  @no_small_talk
end

#only_end_userBoolean Also known as: only_end_user?

Only trigger suggestion if participant role of last utterance is END_USER. Corresponds to the JSON property onlyEndUser

Returns:

  • (Boolean)


13823
13824
13825
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 13823

def only_end_user
  @only_end_user
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



13831
13832
13833
13834
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 13831

def update!(**args)
  @no_small_talk = args[:no_small_talk] if args.key?(:no_small_talk)
  @only_end_user = args[:only_end_user] if args.key?(:only_end_user)
end