Layer 220
MessageActionGiftStars
You gifted or were gifted some Telegram Stars.
constructor
Parameters
| Name | Type | Description |
|---|---|---|
| Flags | # | Flags, see TL conditional fields |
| 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). |
| Stars | long | Amount of gifted stars |
| 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. |
| TransactionId | flags.1?string | Identifier of the transaction, only visible to the receiver of the gift. |
Returns
MessageActionGogram Example
// Creating MessageActionGiftStars constructor obj := &tg.MessageActionGiftStars{ Currency: "...", Amount: int64(0), Stars: int64(0), // Optional fields: // CryptoCurrency: "...", // CryptoAmount: int64(0), // TransactionId: "...", }