vehicleModel property

TextFieldWrapper? get vehicleModel

Data element ID "VAM". A code denoting a family of vehicles (within a make), which has a degree of similarity in construction, such as body, chassis, etc. The field does not necessarily contain a standard code; it may contain a value provided by the originator of the field.

Implementation

TextFieldWrapper? get vehicleModel => document
    .fieldByTypeName("VehicleModel")
    ?.let((field) => TextFieldWrapper(field));