vehicleIdentificationNumber property

TextFieldWrapper? get vehicleIdentificationNumber

Data element ID "VAD". A unique combination of alphanumeric characters that identifies a specific vehicle or component. The VIN is affixed to the vehicle in specific locations and formulated by the manufacturer. State agencies under some controlled instances my assign a VIN to a vehicle.

Implementation

TextFieldWrapper? get vehicleIdentificationNumber => document
    .fieldByTypeName("VehicleIdentificationNumber")
    ?.let((field) => TextFieldWrapper(field));