TTSMessage
public enum TTSMessage : Equatable
TTSMessage defines a message that should be vocalized.
Important
This is a Public Preview API. It may be changed or removed at any time.-
Message with handling options.
Declaration
Swift
case audio(message: String, type: MessageType)Parameters
messageText of the message.
typeType of the message.
-
Message with phonetic transcriptions that should be parsed for correct playback.
Declaration
Swift
case tagged(message: String, phonetics: [PhoneticTranscription])Parameters
messageText of the message.
phoneticsList of the phonetic transcriptions.
-
Declaration
Swift
public var message: String { get }
TomTom SDK for iOS (0.53.1)
TTSMessage