Interface AuctionRound

Describes a round of an auction.

interface AuctionRound {
    @type: "auctionRound";
    duration: number;
    extend_time: number;
    number: number;
    top_winner_count: number;
}

Properties

@type: "auctionRound"
duration: number

Duration of the round, in seconds.

extend_time: number

The number of seconds for which the round will be extended if there are changes in the top winners.

number: number

1-based number of the round.

top_winner_count: number

The number of top winners who trigger round extension if changed.