Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3DtmfInput
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3DtmfInput
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dialogflow_v3/classes.rb,
generated/google/apis/dialogflow_v3/representations.rb,
generated/google/apis/dialogflow_v3/representations.rb
Overview
Represents the input for dtmf event.
Instance Attribute Summary collapse
-
#digits ⇒ String
The dtmf digits.
-
#finish_digit ⇒ String
The finish digit (if any).
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3DtmfInput
constructor
A new instance of GoogleCloudDialogflowCxV3DtmfInput.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3DtmfInput
Returns a new instance of GoogleCloudDialogflowCxV3DtmfInput.
554 555 556 |
# File 'generated/google/apis/dialogflow_v3/classes.rb', line 554 def initialize(**args) update!(**args) end |
Instance Attribute Details
#digits ⇒ String
The dtmf digits.
Corresponds to the JSON property digits
547 548 549 |
# File 'generated/google/apis/dialogflow_v3/classes.rb', line 547 def digits @digits end |
#finish_digit ⇒ String
The finish digit (if any).
Corresponds to the JSON property finishDigit
552 553 554 |
# File 'generated/google/apis/dialogflow_v3/classes.rb', line 552 def finish_digit @finish_digit end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
559 560 561 562 |
# File 'generated/google/apis/dialogflow_v3/classes.rb', line 559 def update!(**args) @digits = args[:digits] if args.key?(:digits) @finish_digit = args[:finish_digit] if args.key?(:finish_digit) end |