Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1AdvancedSettingsDtmfSettings

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dialogflow_v2/classes.rb,
lib/google/apis/dialogflow_v2/representations.rb,
lib/google/apis/dialogflow_v2/representations.rb

Overview

Define behaviors for DTMF (dual tone multi frequency).

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1AdvancedSettingsDtmfSettings

Returns a new instance of GoogleCloudDialogflowCxV3beta1AdvancedSettingsDtmfSettings.



3657
3658
3659
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 3657

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

Instance Attribute Details

#enabledBoolean Also known as: enabled?

If true, incoming audio is processed for DTMF (dual tone multi frequency) events. For example, if the caller presses a button on their telephone keypad and DTMF processing is enabled, Dialogflow will detect the event (e.g. a "3" was pressed) in the incoming audio and pass the event to the bot to drive business logic (e.g. when 3 is pressed, return the account balance). Corresponds to the JSON property enabled

Returns:

  • (Boolean)


3644
3645
3646
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 3644

def enabled
  @enabled
end

#finish_digitString

The digit that terminates a DTMF digit sequence. Corresponds to the JSON property finishDigit

Returns:

  • (String)


3650
3651
3652
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 3650

def finish_digit
  @finish_digit
end

#max_digitsFixnum

Max length of DTMF digits. Corresponds to the JSON property maxDigits

Returns:

  • (Fixnum)


3655
3656
3657
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 3655

def max_digits
  @max_digits
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3662
3663
3664
3665
3666
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 3662

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