Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3DtmfInput

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

Returns a new instance of GoogleCloudDialogflowCxV3DtmfInput.



1863
1864
1865
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1863

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

Instance Attribute Details

#digitsString

The dtmf digits. Corresponds to the JSON property digits

Returns:

  • (String)


1856
1857
1858
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1856

def digits
  @digits
end

#finish_digitString

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

Returns:

  • (String)


1861
1862
1863
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1861

def finish_digit
  @finish_digit
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1868
1869
1870
1871
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 1868

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