class Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3DtmfInput

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_v2beta1/classes.rb, line 352
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_v2beta1/classes.rb, line 357
def update!(**args)
  @digits = args[:digits] if args.key?(:digits)
  @finish_digit = args[:finish_digit] if args.key?(:finish_digit)
end