Layer 228
constructor
webPageAttributeStarGiftAuction#1c641c2 gift:StarGift end_date:int = WebPageAttribute;

Parameters

Name Type Description
Gift StarGift The gift linked to the auction
EndDate int Date when the auction will end (UNIX timestamp)

Gogram Example

// Creating WebPageAttributeStarGiftAuction constructor
obj := &tg.WebPageAttributeStarGiftAuction{
    Gift: &tg.StarGiftObj{},
    EndDate: int(time.Now().Unix()),
}