Selling Partner API SDK for JavaScript
    Preparing search index...

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

    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;
    }
    Index

    Properties

    bodyStyle?: string

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

    driveType?: string

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

    energy?: string

    Energy Source for the vehicle(example: Petrol)

    engineOutput?: EngineOutput[]

    Engine output of vehicle.

    identifiers: VehicleIdentifiers[]

    Identifiers that can be used to identify the vehicle uniquely

    lastProcessedDate?: string

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

    make: string

    Vehicle Brand.

    manufacturingStartDate?: MonthAndYear
    manufacturingStopDate?: MonthAndYear
    model: string

    Specific model of a vehicle.

    variantName?: string

    Name of the vehicle variant.