Interface AuctionBid

Describes a bid in an auction.

interface AuctionBid {
    @type: "auctionBid";
    bid_date: number;
    position: number;
    star_count: number;
}

Properties

@type: "auctionBid"
bid_date: number

Point in time (Unix timestamp) when the bid was made.

position: number

Position of the bid in the list of all bids.

star_count: number

The number of Telegram Stars that were put in the bid.