Layer 227
constructor
starGiftActiveAuctionState#d31bc45d gift:StarGift state:StarGiftAuctionState user_state:StarGiftAuctionUserState = StarGiftActiveAuctionState;

Parameters

Name Type Description
Gift StarGift The collectible gift currently being distributed in the auction.
State StarGiftAuctionState Auction state
UserState StarGiftAuctionUserState Auction state related to the current user (i. e. info about placed bids, won gifts and so on).

Gogram Example

// Creating StarGiftActiveAuctionStateObj constructor
obj := &tg.StarGiftActiveAuctionStateObj{
    Gift: &tg.StarGift{},
    State: &tg.StarGiftAuctionState{},
    UserState: &tg.StarGiftAuctionUserState{},
}