Interface RedeemVoucher

Base interface shared by all journal event types.

interface RedeemVoucher {
    Amount: number;
    BrokerPercentage?: number;
    event: "RedeemVoucher";
    Faction?: string;
    Factions?: { Amount: number; Faction: string }[];
    timestamp: string;
    Type: string;
}

Hierarchy (View Summary)

Properties

Amount: number
BrokerPercentage?: number
event: "RedeemVoucher"

The type of event.

Faction?: string
Factions?: { Amount: number; Faction: string }[]
timestamp: string

The time in GMT, ISO 8601.

Type: string