Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1AdvancedSettingsDtmfSettings

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1AdvancedSettingsDtmfSettings

Returns a new instance of GoogleCloudDialogflowCxV3beta1AdvancedSettingsDtmfSettings.



9785
9786
9787
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 9785

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

Instance Attribute Details

#enabledBoolean Also known as: enabled?

Corresponds to the JSON property enabled

Returns:

  • (Boolean)


9762
9763
9764
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 9762

def enabled
  @enabled
end

#endpointing_timeout_durationString

Corresponds to the JSON property endpointingTimeoutDuration

Returns:

  • (String)


9768
9769
9770
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 9768

def endpointing_timeout_duration
  @endpointing_timeout_duration
end

#finish_digitString

Corresponds to the JSON property finishDigit

Returns:

  • (String)


9773
9774
9775
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 9773

def finish_digit
  @finish_digit
end

#interdigit_timeout_durationString

Corresponds to the JSON property interdigitTimeoutDuration

Returns:

  • (String)


9778
9779
9780
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 9778

def interdigit_timeout_duration
  @interdigit_timeout_duration
end

#max_digitsFixnum

Corresponds to the JSON property maxDigits

Returns:

  • (Fixnum)


9783
9784
9785
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 9783

def max_digits
  @max_digits
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9790
9791
9792
9793
9794
9795
9796
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 9790

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