class Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1DtmfInput
Represents the input for dtmf event.
Attributes
digits[RW]
The dtmf digits. Corresponds to the JSON property `digits` @return [String]
finish_digit[RW]
The finish digit (if any). Corresponds to the JSON property `finishDigit` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dialogflow_v3/classes.rb, line 6224 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dialogflow_v3/classes.rb, line 6229 def update!(**args) @digits = args[:digits] if args.key?(:digits) @finish_digit = args[:finish_digit] if args.key?(:finish_digit) end