PhoneticTranscription

data class PhoneticTranscription(    val transcriptions: List<String>,     val languageCodes: List<String>,     val tag: String,     val alphabet: String)

Represents phonetic transcription.

Parameters

transcriptions

Phonetic transcriptions of phrases from the TaggedMessage.message surrounded by a tag.

languageCodes

Language codes in IETF format of the languages of the transcriptions sorted in the same order as transcriptions.

tag

Tag contained in a TaggedMessage.message that surrounds the phrases from TaggedMessage.message that the transcriptions refer to.

For example, for the message Turn left onto <roadNumber>A4</roadNumber> and then <roadNumber>A5</roadNumber> towards <signpostText>Scheepvaartmuseum</signpostText> the tag value would be set to roadNumber and signpostText

alphabet

Phonetic alphabet of the transcriptions, eg. "ipa" or "lhp".

Constructors

Link copied to clipboard
fun PhoneticTranscription(    transcriptions: List<String>,     languageCodes: List<String>,     tag: String,     alphabet: String)

Properties

Link copied to clipboard
val alphabet: String
Link copied to clipboard
val languageCodes: List<String>
Link copied to clipboard
val tag: String
Link copied to clipboard
val transcriptions: List<String>