RoadShield 
    class RoadShield(val fullRoadNumber: String, val shieldContent: String = "", val affixes: List<String> = emptyList(), val stateCode: String = "", val countryCode: String = "", val reference: String = "")
Represents a road shield.
Parameters
fullRoadNumber  
Full road number. Most road numbers have a 'letter' prefix, which is also included.
shieldContent 
The road number as shown on the shield.
affixes
List of possible affixes that can be shown in addition to the shieldContent.
stateCode 
The state code containing the shield (second part of an ISO 3166-2 identifier).
countryCode 
The country code (ISO 3166-1 alpha-3) containing the shield.
reference
Transparent identifier of the shield which may be empty if the underlying data source does not support the mapping.
Constructors
Functions
Link copied to clipboard
                  Link copied to clipboard
                  Link copied to clipboard
                  Link copied to clipboard
                  Link copied to clipboard
                  Link copied to clipboard
                  Link copied to clipboard
                  fun copy(fullRoadNumber: String = this.fullRoadNumber, shieldContent: String = this.shieldContent, affixes: List<String> = this.affixes, stateCode: String = this.stateCode, countryCode: String = this.countryCode, reference: String = this.reference): RoadShield
Copies this object while allowing to change some properties.