Interface RestockVehicle

Base interface shared by all journal event types.

interface RestockVehicle {
    Cost: number;
    Count: number;
    ID?: number;
    Loadout: string;
    Type: string;
    Type_Localised?: string;
    event: "RestockVehicle";
    timestamp: string;
}

Hierarchy (view full)

Properties

Cost: number
Count: number
ID?: number
Loadout: string
Type: string
Type_Localised?: string
event: "RestockVehicle"

The type of event.

timestamp: string

The time in GMT, ISO 8601.