@playlive/tiltify-core
    Preparing search index...

    Interface TiltifyReward

    A reward (e.g. an item or perk) that can be claimed with a donation.

    interface TiltifyReward {
        active: boolean;
        amount: TiltifyAmount;
        description: string | null;
        ends_at: string | null;
        fair_market_value: TiltifyAmount | null;
        highlighted: boolean;
        id: string;
        image: TiltifyImage | null;
        inserted_at: string;
        legacy_id: number;
        name: string;
        quantity: number | null;
        quantity_remaining: number | null;
        starts_at: string | null;
        updated_at: string;
    }
    Index
    active: boolean
    description: string | null
    ends_at: string | null
    fair_market_value: TiltifyAmount | null
    highlighted: boolean
    id: string
    image: TiltifyImage | null
    inserted_at: string
    legacy_id: number
    name: string
    quantity: number | null
    quantity_remaining: number | null
    starts_at: string | null
    updated_at: string