Interface GiftAuction

Describes an auction on which a gift can be purchased.

interface GiftAuction {
    @type: "giftAuction";
    gifts_per_round: number;
    id: string;
    start_date: number;
}

Properties

@type: "giftAuction"
gifts_per_round: number

Number of gifts distributed in each round.

id: string

Identifier of the auction.

start_date: number

Point in time (Unix timestamp) when the auction will start.