Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1AdvancedSettingsDtmfSettings
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1AdvancedSettingsDtmfSettings
- 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
-
#enabled ⇒ Boolean
(also: #enabled?)
Corresponds to the JSON property
enabled. -
#endpointing_timeout_duration ⇒ String
Corresponds to the JSON property
endpointingTimeoutDuration. -
#finish_digit ⇒ String
Corresponds to the JSON property
finishDigit. -
#interdigit_timeout_duration ⇒ String
Corresponds to the JSON property
interdigitTimeoutDuration. -
#max_digits ⇒ Fixnum
Corresponds to the JSON property
maxDigits.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1AdvancedSettingsDtmfSettings
constructor
A new instance of GoogleCloudDialogflowCxV3beta1AdvancedSettingsDtmfSettings.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1AdvancedSettingsDtmfSettings
Returns a new instance of GoogleCloudDialogflowCxV3beta1AdvancedSettingsDtmfSettings.
3460 3461 3462 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 3460 def initialize(**args) update!(**args) end |
Instance Attribute Details
#enabled ⇒ Boolean Also known as: enabled?
Corresponds to the JSON property enabled
3437 3438 3439 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 3437 def enabled @enabled end |
#endpointing_timeout_duration ⇒ String
Corresponds to the JSON property endpointingTimeoutDuration
3443 3444 3445 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 3443 def endpointing_timeout_duration @endpointing_timeout_duration end |
#finish_digit ⇒ String
Corresponds to the JSON property finishDigit
3448 3449 3450 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 3448 def finish_digit @finish_digit end |
#interdigit_timeout_duration ⇒ String
Corresponds to the JSON property interdigitTimeoutDuration
3453 3454 3455 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 3453 def interdigit_timeout_duration @interdigit_timeout_duration end |
#max_digits ⇒ Fixnum
Corresponds to the JSON property maxDigits
3458 3459 3460 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 3458 def max_digits @max_digits end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3465 3466 3467 3468 3469 3470 3471 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 3465 def update!(**args) @enabled = args[:enabled] if args.key?(:enabled) @endpointing_timeout_duration = args[:endpointing_timeout_duration] if args.key?(:endpointing_timeout_duration) @finish_digit = args[:finish_digit] if args.key?(:finish_digit) @interdigit_timeout_duration = args[:interdigit_timeout_duration] if args.key?(:interdigit_timeout_duration) @max_digits = args[:max_digits] if args.key?(:max_digits) end |