Layer 227
MessageActionGiftPremium
Info about a gifted Telegram Premium subscription
constructor
messageActionGiftPremium#48e91302 flags:# currency:string amount:long days:int crypto_currency:flags.0?string crypto_amount:flags.0?long message:flags.1?TextWithEntities = MessageAction;
Parameters
| Name | Type | Description |
|---|---|---|
| Currency | string | Three-letter ISO 4217 currency code |
| Amount | long | Price of the gift 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). |
| Days | int | Duration of the gifted Telegram Premium subscription, in days. |
| CryptoCurrency | flags .0? string | If the gift was bought using a cryptocurrency, the cryptocurrency name. |
| CryptoAmount | flags .0? long | If the gift was bought using a cryptocurrency, price of the gift in the smallest units of a cryptocurrency. |
| Message | flags .1? TextWithEntities | Message attached with the gift |
Returns
MessageActionGogram Example
// Creating MessageActionGiftPremium constructor obj := &tg.MessageActionGiftPremium{ Currency: "Hello, World!", Amount: int64(1234567890), Days: 42, CryptoCurrency: "Hello, World!", CryptoAmount: nil, Message: nil, }