Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1AdvancedSettingsDtmfSettings

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



3834
3835
3836
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 3834

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)


3811
3812
3813
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 3811

def enabled
  @enabled
end

#endpointing_timeout_durationString

Endpoint timeout setting for matching dtmf input to regex. Corresponds to the JSON property endpointingTimeoutDuration

Returns:

  • (String)


3817
3818
3819
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 3817

def endpointing_timeout_duration
  @endpointing_timeout_duration
end

#finish_digitString

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

Returns:

  • (String)


3822
3823
3824
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 3822

def finish_digit
  @finish_digit
end

#interdigit_timeout_durationString

Interdigit timeout setting for matching dtmf input to regex. Corresponds to the JSON property interdigitTimeoutDuration

Returns:

  • (String)


3827
3828
3829
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 3827

def interdigit_timeout_duration
  @interdigit_timeout_duration
end

#max_digitsFixnum

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

Returns:

  • (Fixnum)


3832
3833
3834
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 3832

def max_digits
  @max_digits
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3839
3840
3841
3842
3843
3844
3845
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 3839

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