Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AdvancedSettings

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dialogflow_v3beta1/classes.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb

Overview

Hierarchical advanced settings for agent/flow/page/fulfillment/parameter. Settings exposed at lower level overrides the settings exposed at higher level. Overriding occurs at the sub-setting level. For example, the playback_interruption_settings at fulfillment level only overrides the playback_interruption_settings at the agent level, leaving other settings at the agent level unchanged. DTMF settings does not override each other. DTMF settings set at different levels define DTMF detections running in parallel. Hierarchy: Agent->Flow->Page->Fulfillment/Parameter.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1AdvancedSettings

Returns a new instance of GoogleCloudDialogflowCxV3beta1AdvancedSettings.



2969
2970
2971
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 2969

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

Instance Attribute Details

#logging_settingsGoogle::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings

Define behaviors on logging. Corresponds to the JSON property loggingSettings



2967
2968
2969
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 2967

def logging_settings
  @logging_settings
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2974
2975
2976
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 2974

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