Class: Telnyx::Models::ConversationRelayInterruptionSettings
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Telnyx::Models::ConversationRelayInterruptionSettings
- Defined in:
- lib/telnyx/models/conversation_relay_interruption_settings.rb
Defined Under Namespace
Modules: Interruptible, InterruptibleGreeting, WelcomeGreetingInterruptible
Instance Attribute Summary collapse
-
#enable ⇒ Boolean?
Legacy boolean form.
-
#interruptible ⇒ Symbol, ...
Controls when caller input can interrupt assistant speech.
-
#interruptible_greeting ⇒ Symbol, ...
Controls when caller input can interrupt assistant speech.
-
#welcome_greeting_interruptible ⇒ Symbol, ...
Controls when caller input can interrupt assistant speech.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(enable: nil, interruptible: nil, interruptible_greeting: nil, welcome_greeting_interruptible: nil) ⇒ Object
constructor
Some parameter documentations has been truncated, see ConversationRelayInterruptionSettings for more details.
Methods inherited from Internal::Type::BaseModel
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
#initialize(enable: nil, interruptible: nil, interruptible_greeting: nil, welcome_greeting_interruptible: nil) ⇒ Object
Some parameter documentations has been truncated, see Telnyx::Models::ConversationRelayInterruptionSettings for more details.
Settings for handling caller interruptions during Conversation Relay speech.
|
|
# File 'lib/telnyx/models/conversation_relay_interruption_settings.rb', line 39
|
Instance Attribute Details
#enable ⇒ Boolean?
Legacy boolean form. ‘true` is equivalent to `interruptible=any`; `false` is equivalent to `interruptible=none`.
11 |
# File 'lib/telnyx/models/conversation_relay_interruption_settings.rb', line 11 optional :enable, Telnyx::Internal::Type::Boolean |
#interruptible ⇒ Symbol, ...
Controls when caller input can interrupt assistant speech. ‘any` allows speech or DTMF interruptions; `none` disables interruptions; `speech` allows speech only; `dtmf` allows DTMF only.
19 |
# File 'lib/telnyx/models/conversation_relay_interruption_settings.rb', line 19 optional :interruptible, enum: -> { Telnyx::ConversationRelayInterruptionSettings::Interruptible } |
#interruptible_greeting ⇒ Symbol, ...
Controls when caller input can interrupt assistant speech. ‘any` allows speech or DTMF interruptions; `none` disables interruptions; `speech` allows speech only; `dtmf` allows DTMF only.
27 28 |
# File 'lib/telnyx/models/conversation_relay_interruption_settings.rb', line 27 optional :interruptible_greeting, enum: -> { Telnyx::ConversationRelayInterruptionSettings::InterruptibleGreeting } |
#welcome_greeting_interruptible ⇒ Symbol, ...
Controls when caller input can interrupt assistant speech. ‘any` allows speech or DTMF interruptions; `none` disables interruptions; `speech` allows speech only; `dtmf` allows DTMF only.
36 37 |
# File 'lib/telnyx/models/conversation_relay_interruption_settings.rb', line 36 optional :welcome_greeting_interruptible, enum: -> { Telnyx::ConversationRelayInterruptionSettings::WelcomeGreetingInterruptible } |
Class Method Details
.values ⇒ Array<Symbol>
|
|
# File 'lib/telnyx/models/conversation_relay_interruption_settings.rb', line 66
|