Combinations of attributes and unique identifier that represents a vehicle in vehicle list.

Vehicle

interface Vehicle {
    bodyStyle?: string;
    driveType?: string;
    energy?: string;
    engineOutput?: EngineOutput[];
    identifiers: VehicleIdentifiers[];
    lastProcessedDate?: string;
    make: string;
    manufacturingStartDate?: MonthAndYear;
    manufacturingStopDate?: MonthAndYear;
    model: string;
    status?: VehicleStatusInCatalog;
    variantName?: string;
}

Properties

bodyStyle?: string

Body style of vehicle (example: Hatchback, Cabriolet).

Vehicle

driveType?: string

Drive type of vehicle(example: Rear wheel drive).

Vehicle

energy?: string

Energy Source for the vehicle(example: Petrol)

Vehicle

engineOutput?: EngineOutput[]

Engine output of vehicle.

Vehicle

identifiers: VehicleIdentifiers[]

Identifiers that can be used to identify the vehicle uniquely

Vehicle

lastProcessedDate?: string

The date on which the vehicle was last updated, in ISO-8601 date/time format.

Vehicle

make: string

Vehicle Brand.

Vehicle

manufacturingStartDate?: MonthAndYear

Vehicle

manufacturingStopDate?: MonthAndYear

Vehicle

model: string

Specific model of a vehicle.

Vehicle

Vehicle

variantName?: string

Name of the vehicle variant.

Vehicle

MMNEPVFCICPMFPCPTTAAATR