Interface CargoTransfer

Base interface shared by all journal event types.

interface CargoTransfer {
    event: "CargoTransfer";
    timestamp: string;
    Transfers: {
        Count: number;
        Direction: string;
        Type: string;
        Type_Localised?: string;
    }[];
}

Hierarchy (View Summary)

Properties

event: "CargoTransfer"

The type of event.

timestamp: string

The time in GMT, ISO 8601.

Transfers: {
    Count: number;
    Direction: string;
    Type: string;
    Type_Localised?: string;
}[]