Layer 220
constructor
messageActionGiftCode#56d03994 flags:# via_giveaway:flags.0?true unclaimed:flags.5?true boost_peer:flags.1?Peer months:int slug:string currency:flags.2?string amount:flags.2?long crypto_currency:flags.3?string crypto_amount:flags.3?long message:flags.4?TextWithEntities = MessageAction;

Parameters

Name Type Description
Flags # Flags, see TL conditional fields
ViaGiveaway flags.0?true If set, this gift code was received from a giveaway started by a channel/supergroup we're subscribed to.
Unclaimed flags.5?true If set, the link was not redeemed yet.
BoostPeer flags.1?Peer Identifier of the channel/supergroup that created the gift code either directly or through a giveaway: if we import this giftcode link, we will also automatically boost this channel/supergroup.
Months int Duration in months of the gifted Telegram Premium subscription.
Slug string Slug of the Telegram Premium giftcode link
Currency flags.2?string Three-letter ISO 4217 currency code
Amount flags.2?long Total price 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).
CryptoCurrency flags.3?string If set, the gift was made using the specified cryptocurrency.
CryptoAmount flags.3?long If crypto_currency is set, contains the paid amount, in the smallest units of the cryptocurrency.
Message flags.4?TextWithEntities Message attached with the gift

Returns

MessageAction

Gogram Example

// Creating MessageActionGiftCode constructor
obj := &tg.MessageActionGiftCode{
    Months: 0,
    Slug: "...",

    // Optional fields:
    // ViaGiveaway: true,
    // Unclaimed: true,
    // BoostPeer: &tg.Peer{},
    // Currency: "...",
    // ... more optional fields
}