Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1DtmfInput

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1DtmfInput

Returns a new instance of GoogleCloudDialogflowCxV3beta1DtmfInput.



5269
5270
5271
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5269

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#digitsString

The dtmf digits. Corresponds to the JSON property digits

Returns:

  • (String)


5262
5263
5264
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5262

def digits
  @digits
end

#finish_digitString

The finish digit (if any). Corresponds to the JSON property finishDigit

Returns:

  • (String)


5267
5268
5269
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5267

def finish_digit
  @finish_digit
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5274
5275
5276
5277
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5274

def update!(**args)
  @digits = args[:digits] if args.key?(:digits)
  @finish_digit = args[:finish_digit] if args.key?(:finish_digit)
end