class Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionTriggerSettings

Settings of suggestion trigger.

Attributes

no_small_talk[RW]

Do not trigger if last utterance is small talk. Corresponds to the JSON property `noSmallTalk` @return [Boolean]

no_small_talk?[RW]

Do not trigger if last utterance is small talk. Corresponds to the JSON property `noSmallTalk` @return [Boolean]

only_end_user[RW]

Only trigger suggestion if participant role of last utterance is END_USER. Corresponds to the JSON property `onlyEndUser` @return [Boolean]

only_end_user?[RW]

Only trigger suggestion if participant role of last utterance is END_USER. Corresponds to the JSON property `onlyEndUser` @return [Boolean]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dialogflow_v2beta1/classes.rb, line 10007
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dialogflow_v2beta1/classes.rb, line 10012
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