Interface CrimeVictim

Base interface shared by all journal event types.

interface CrimeVictim {
    Bounty?: number;
    CrimeType: string;
    Fine?: number;
    Offender: string;
    event: "CrimeVictim";
    timestamp: string;
}

Hierarchy (view full)

Properties

Bounty?: number
CrimeType: string
Fine?: number
Offender: string
event: "CrimeVictim"

The type of event.

timestamp: string

The time in GMT, ISO 8601.