Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AdvancedSettingsDtmfSettings
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AdvancedSettingsDtmfSettings
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v3/classes.rb,
lib/google/apis/dialogflow_v3/representations.rb,
lib/google/apis/dialogflow_v3/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) ⇒ GoogleCloudDialogflowCxV3AdvancedSettingsDtmfSettings
constructor
A new instance of GoogleCloudDialogflowCxV3AdvancedSettingsDtmfSettings.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3AdvancedSettingsDtmfSettings
Returns a new instance of GoogleCloudDialogflowCxV3AdvancedSettingsDtmfSettings.
147 148 149 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 147 def initialize(**args) update!(**args) end |
Instance Attribute Details
#enabled ⇒ Boolean Also known as: enabled?
Corresponds to the JSON property enabled
124 125 126 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 124 def enabled @enabled end |
#endpointing_timeout_duration ⇒ String
Corresponds to the JSON property endpointingTimeoutDuration
130 131 132 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 130 def endpointing_timeout_duration @endpointing_timeout_duration end |
#finish_digit ⇒ String
Corresponds to the JSON property finishDigit
135 136 137 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 135 def finish_digit @finish_digit end |
#interdigit_timeout_duration ⇒ String
Corresponds to the JSON property interdigitTimeoutDuration
140 141 142 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 140 def interdigit_timeout_duration @interdigit_timeout_duration end |
#max_digits ⇒ Fixnum
Corresponds to the JSON property maxDigits
145 146 147 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 145 def max_digits @max_digits end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
152 153 154 155 156 157 158 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 152 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 |