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.



6114
6115
6116
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6114

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

Instance Attribute Details

#digitsString

The dtmf digits. Corresponds to the JSON property digits

Returns:

  • (String)


6107
6108
6109
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6107

def digits
  @digits
end

#finish_digitString

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

Returns:

  • (String)


6112
6113
6114
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6112

def finish_digit
  @finish_digit
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6119
6120
6121
6122
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6119

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