Layer 220
constructor
starsGiftOption#5e0589f1 flags:# extended:flags.1?true stars:long store_product:flags.0?string currency:string amount:long = StarsGiftOption;

Parameters

Name Type Description
Flags # Flags, see TL conditional fields
Extended flags.1?true If set, the option must only be shown in the full list of topup options.
Stars long Amount of Telegram stars.
StoreProduct flags.0?string Identifier of the store product associated with the option, official apps only.
Currency string Three-letter ISO 4217 currency code
Amount long Price of the product in the smallest units of the currency (integer, not float/double). For example, for a price of US$ 1.45 pass amount = 145. See the exp parameter in currencies. json, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies).

Returns

StarsGiftOption

Gogram Example

// Creating StarsGiftOption constructor
obj := &tg.StarsGiftOption{
    Stars: int64(0),
    Currency: "...",
    Amount: int64(0),

    // Optional fields:
    // Extended: true,
    // StoreProduct: "...",
}