Class: Telnyx::Models::PronunciationDictPhonemeItem
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Telnyx::Models::PronunciationDictPhonemeItem
- Defined in:
- lib/telnyx/models/pronunciation_dict_phoneme_item.rb
Defined Under Namespace
Instance Attribute Summary collapse
-
#alphabet ⇒ Symbol, Telnyx::Models::PronunciationDictPhonemeItem::Alphabet
The phonetic alphabet used for the phoneme notation.
-
#phoneme ⇒ String
The phoneme notation representing the desired pronunciation.
-
#text ⇒ String
The text to match in the input.
-
#type ⇒ Symbol, Telnyx::Models::PronunciationDictPhonemeItem::Type
The item type.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(alphabet:, phoneme:, text:, type:) ⇒ Object
constructor
Some parameter documentations has been truncated, see PronunciationDictPhonemeItem 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(alphabet:, phoneme:, text:, type:) ⇒ Object
Some parameter documentations has been truncated, see Telnyx::Models::PronunciationDictPhonemeItem for more details.
A phoneme pronunciation item. When the ‘text` value is found in input, it is pronounced using the specified IPA phoneme notation.
|
|
# File 'lib/telnyx/models/pronunciation_dict_phoneme_item.rb', line 31
|
Instance Attribute Details
#alphabet ⇒ Symbol, Telnyx::Models::PronunciationDictPhonemeItem::Alphabet
The phonetic alphabet used for the phoneme notation.
10 |
# File 'lib/telnyx/models/pronunciation_dict_phoneme_item.rb', line 10 required :alphabet, enum: -> { Telnyx::PronunciationDictPhonemeItem::Alphabet } |
#phoneme ⇒ String
The phoneme notation representing the desired pronunciation.
16 |
# File 'lib/telnyx/models/pronunciation_dict_phoneme_item.rb', line 16 required :phoneme, String |
#text ⇒ String
The text to match in the input. Case-insensitive matching is used during synthesis.
23 |
# File 'lib/telnyx/models/pronunciation_dict_phoneme_item.rb', line 23 required :text, String |
#type ⇒ Symbol, Telnyx::Models::PronunciationDictPhonemeItem::Type
The item type.
29 |
# File 'lib/telnyx/models/pronunciation_dict_phoneme_item.rb', line 29 required :type, enum: -> { Telnyx::PronunciationDictPhonemeItem::Type } |
Class Method Details
.values ⇒ Array<Symbol>
|
|
# File 'lib/telnyx/models/pronunciation_dict_phoneme_item.rb', line 54
|