RoadShieldReference

data class RoadShieldReference(    val reference: String,     val shieldContent: String? = null,     val affixes: List<String> = emptyList())

An object describing a single road shield reference.

Parameters

reference

A unique identifier for the road shield.

shieldContent

An optional string to be shown on the road shield.

affixes

An optional list of possible affixes that can be shown in addition to the shieldContent.

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

Constructors

Link copied to clipboard
fun RoadShieldReference(    reference: String,     shieldContent: String? = null,     affixes: List<String> = emptyList())

Properties

Link copied to clipboard
val affixes: List<String>
Link copied to clipboard
val reference: String
Link copied to clipboard
val shieldContent: String? = null