GuidanceAnnouncement

data class GuidanceAnnouncement(    val id: UniqueId = UniqueId(),     val language: String,     val message: String,     val messagePhonetics: Phonetics? = null,     val announcementType: AnnouncementType)

Fine-grained announcement points, each with its own unique id, message and type.

Important: This is a Public Preview API. It may be changed or removed at any time.

Parameters

id

The ID of the announcement.

language

The language of the message as an IETF language tag, i.e., a dash-separated two-letter ISO-639 language code, and a two-letter ISO 3166 country code. Example: "en-US"

message

A verbal message for the maneuver.

messagePhonetics

Phonetic strings of all of the readable Instruction properties.

announcementType

type of the announcement.

Constructors

Link copied to clipboard
fun GuidanceAnnouncement(    id: UniqueId = UniqueId(),     language: String,     message: String,     messagePhonetics: Phonetics? = null,     announcementType: AnnouncementType)

Properties

Link copied to clipboard
val announcementType: AnnouncementType
Link copied to clipboard
val id: UniqueId
Link copied to clipboard
val language: String
Link copied to clipboard
val message: String
Link copied to clipboard
val messagePhonetics: Phonetics? = null