PhoneticString
public struct PhoneticString : Equatable
Represents a phonetic string.
-
Creates an instance with the specified parameters.
Throws
An error of the typeInitializationError
.Declaration
Swift
public init( value: String, alphabet: String, language: Locale ) throws
Parameters
value
UTF-8 encoded string representing the phonetic encoding.
alphabet
Phonetic alphabet to be used as the value of ssml:alphabet tag to conform to “Phonetic Alphabet Registry” encoded as UTF-8 string.
language
The language of the phonetic string as a
Locale
.
-
UTF-8 encoded string representing the phonetic encoding.
Declaration
Swift
public let value: String
-
Phonetic alphabet to be used as the value of ssml:alphabet tag to conform to “Phonetic Alphabet Registry” encoded as UTF-8 string.
Declaration
Swift
public let alphabet: String
-
The language of the phonetic string as a
Locale
.Declaration
Swift
public let language: Locale
-
Exceptions that can be thrown during the creation of
See morePhoneticString
.Declaration
Swift
public enum InitializationError : Error