Show / Hide Table of Contents

Class LicensePlate

The license plate information of the Vehicle. To avoid storing personally-identifiable information, only the minimum information about the license plate is stored as part of the entity.

Inheritance
object
LicensePlate
Implements
IMessage<LicensePlate>
IEquatable<LicensePlate>
IDeepCloneable<LicensePlate>
IBufferMessage
IMessage
Inherited Members
object.GetHashCode()
object.GetType()
object.ToString()
Namespace: Google.Maps.FleetEngine.V1
Assembly: Google.Maps.FleetEngine.V1.dll
Syntax
public sealed class LicensePlate : IMessage<LicensePlate>, IEquatable<LicensePlate>, IDeepCloneable<LicensePlate>, IBufferMessage, IMessage

Constructors

LicensePlate()

Declaration
public LicensePlate()

LicensePlate(LicensePlate)

Declaration
public LicensePlate(LicensePlate other)
Parameters
Type Name Description
LicensePlate other

Properties

CountryCode

Required. CLDR Country/Region Code. For example, US for United States, or IN for India.

Declaration
public string CountryCode { get; set; }
Property Value
Type Description
string

LastCharacter

The last digit of the license plate or "-1" to denote no numeric value is present in the license plate.

  • "ABC 1234" -> "4"
  • "AB 123 CD" -> "3"
  • "ABCDEF" -> "-1"
Declaration
public string LastCharacter { get; set; }
Property Value
Type Description
string
In this article
Back to top Generated by DocFX