Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3AdvancedSettings
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3AdvancedSettings
- 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
Instance Attribute Summary collapse
-
#audio_export_gcs_destination ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3GcsDestination
Corresponds to the JSON property
audioExportGcsDestination. -
#dtmf_settings ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3AdvancedSettingsDtmfSettings
Corresponds to the JSON property
dtmfSettings. -
#logging_settings ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3AdvancedSettingsLoggingSettings
Corresponds to the JSON property
loggingSettings. -
#speech_settings ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3AdvancedSettingsSpeechSettings
Corresponds to the JSON property
speechSettings.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3AdvancedSettings
constructor
A new instance of GoogleCloudDialogflowCxV3AdvancedSettings.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3AdvancedSettings
Returns a new instance of GoogleCloudDialogflowCxV3AdvancedSettings.
49 50 51 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 49 def initialize(**args) update!(**args) end |
Instance Attribute Details
#audio_export_gcs_destination ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3GcsDestination
Corresponds to the JSON property audioExportGcsDestination
32 33 34 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 32 def audio_export_gcs_destination @audio_export_gcs_destination end |
#dtmf_settings ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3AdvancedSettingsDtmfSettings
Corresponds to the JSON property dtmfSettings
37 38 39 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 37 def dtmf_settings @dtmf_settings end |
#logging_settings ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3AdvancedSettingsLoggingSettings
Corresponds to the JSON property loggingSettings
42 43 44 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 42 def logging_settings @logging_settings end |
#speech_settings ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3AdvancedSettingsSpeechSettings
Corresponds to the JSON property speechSettings
47 48 49 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 47 def speech_settings @speech_settings end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
54 55 56 57 58 59 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 54 def update!(**args) @audio_export_gcs_destination = args[:audio_export_gcs_destination] if args.key?(:audio_export_gcs_destination) @dtmf_settings = args[:dtmf_settings] if args.key?(:dtmf_settings) @logging_settings = args[:logging_settings] if args.key?(:logging_settings) @speech_settings = args[:speech_settings] if args.key?(:speech_settings) end |