Interface RestockVehicle

Base interface shared by all journal event types.

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

Hierarchy (View Summary)

Properties

Cost: number
Count: number
event: "RestockVehicle"

The type of event.

ID?: number
Loadout: string
timestamp: string

The time in GMT, ISO 8601.

Type: string
Type_Localised?: string