Layer 227
constructor
updateStarGiftAuctionUserState#dc58f31e gift_id:long user_state:StarGiftAuctionUserState = Update;

Parameters

Name Type Description
GiftId long ID of the collectible gift currently being distributed in the auction.
UserState StarGiftAuctionUserState Auction state related to the current user (i. e. info about placed bids, won gifts and so on).

Returns

Update

Gogram Example

// Creating UpdateStarGiftAuctionUserState constructor
obj := &tg.UpdateStarGiftAuctionUserState{
    GiftId: int64(1234567890),
    UserState: &tg.StarGiftAuctionUserState{},
}