Layer 227
constructor
starGiftAuctionRoundExtendable#aa021e5 num:int duration:int extend_top:int extend_window:int = StarGiftAuctionRound;

Parameters

Name Type Description
Num int This object describes all rounds starting from num up until next. num-1 inclusively ( next is the next Star Gift Auction Round ).
Duration int Duration in seconds of the round(s).
ExtendTop int The round(s) will be extended by extend_window if a bid changes the composition/order of the top extend_top bidders.
ExtendWindow int The round(s) will be extended by this many seconds if a bid changes the composition/order of the top extend_top bidders.

Gogram Example

// Creating StarGiftAuctionRoundExtendable constructor
obj := &tg.StarGiftAuctionRoundExtendable{
    Num: 42,
    Duration: 42,
    ExtendTop: 42,
    ExtendWindow: 42,
}