Interface RedeemVoucher

Base interface shared by all journal event types.

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

Hierarchy (view full)

Properties

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

Type declaration

  • Amount: number
  • Faction: string
Type: string
event: "RedeemVoucher"

The type of event.

timestamp: string

The time in GMT, ISO 8601.