Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1AdvancedSettingsSpeechSettings
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1AdvancedSettingsSpeechSettings
- 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
-
#endpointer_sensitivity ⇒ Fixnum
Corresponds to the JSON property
endpointerSensitivity. -
#models ⇒ Hash<String,String>
Corresponds to the JSON property
models. -
#no_speech_timeout ⇒ String
Corresponds to the JSON property
noSpeechTimeout. -
#use_timeout_based_endpointing ⇒ Boolean
(also: #use_timeout_based_endpointing?)
Corresponds to the JSON property
useTimeoutBasedEndpointing.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1AdvancedSettingsSpeechSettings
constructor
A new instance of GoogleCloudDialogflowCxV3beta1AdvancedSettingsSpeechSettings.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1AdvancedSettingsSpeechSettings
Returns a new instance of GoogleCloudDialogflowCxV3beta1AdvancedSettingsSpeechSettings.
3533 3534 3535 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 3533 def initialize(**args) update!(**args) end |
Instance Attribute Details
#endpointer_sensitivity ⇒ Fixnum
Corresponds to the JSON property endpointerSensitivity
3515 3516 3517 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 3515 def endpointer_sensitivity @endpointer_sensitivity end |
#models ⇒ Hash<String,String>
Corresponds to the JSON property models
3520 3521 3522 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 3520 def models @models end |
#no_speech_timeout ⇒ String
Corresponds to the JSON property noSpeechTimeout
3525 3526 3527 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 3525 def no_speech_timeout @no_speech_timeout end |
#use_timeout_based_endpointing ⇒ Boolean Also known as: use_timeout_based_endpointing?
Corresponds to the JSON property useTimeoutBasedEndpointing
3530 3531 3532 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 3530 def use_timeout_based_endpointing @use_timeout_based_endpointing end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3538 3539 3540 3541 3542 3543 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 3538 def update!(**args) @endpointer_sensitivity = args[:endpointer_sensitivity] if args.key?(:endpointer_sensitivity) @models = args[:models] if args.key?(:models) @no_speech_timeout = args[:no_speech_timeout] if args.key?(:no_speech_timeout) @use_timeout_based_endpointing = args[:use_timeout_based_endpointing] if args.key?(:use_timeout_based_endpointing) end |