Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1DtmfInput
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1DtmfInput
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v3beta1/classes.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb,
lib/google/apis/dialogflow_v3beta1/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) ⇒ GoogleCloudDialogflowCxV3beta1DtmfInput
constructor
A new instance of GoogleCloudDialogflowCxV3beta1DtmfInput.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1DtmfInput
Returns a new instance of GoogleCloudDialogflowCxV3beta1DtmfInput.
2913 2914 2915 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 2913 def initialize(**args) update!(**args) end |
Instance Attribute Details
#digits ⇒ String
The dtmf digits.
Corresponds to the JSON property digits
2906 2907 2908 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 2906 def digits @digits end |
#finish_digit ⇒ String
The finish digit (if any).
Corresponds to the JSON property finishDigit
2911 2912 2913 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 2911 def finish_digit @finish_digit end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2918 2919 2920 2921 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 2918 def update!(**args) @digits = args[:digits] if args.key?(:digits) @finish_digit = args[:finish_digit] if args.key?(:finish_digit) end |