Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1DtmfInput

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dialogflow_v3/classes.rb,
generated/google/apis/dialogflow_v3/representations.rb,
generated/google/apis/dialogflow_v3/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.



4830
4831
4832
# File 'generated/google/apis/dialogflow_v3/classes.rb', line 4830

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

Instance Attribute Details

#digitsString

The dtmf digits. Corresponds to the JSON property digits

Returns:

  • (String)


4823
4824
4825
# File 'generated/google/apis/dialogflow_v3/classes.rb', line 4823

def digits
  @digits
end

#finish_digitString

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

Returns:

  • (String)


4828
4829
4830
# File 'generated/google/apis/dialogflow_v3/classes.rb', line 4828

def finish_digit
  @finish_digit
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4835
4836
4837
4838
# File 'generated/google/apis/dialogflow_v3/classes.rb', line 4835

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