Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3DtmfInput

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



305
306
307
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 305

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

Instance Attribute Details

#digitsString

The dtmf digits. Corresponds to the JSON property digits

Returns:

  • (String)


298
299
300
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 298

def digits
  @digits
end

#finish_digitString

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

Returns:

  • (String)


303
304
305
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 303

def finish_digit
  @finish_digit
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



310
311
312
313
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 310

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