Link Search Menu Expand Document

Constructor: messageActionGiftStars

Back to constructors index

You gifted or were gifted some Telegram Stars.

Attributes:

NameTypeRequiredDescription
currencystringYesThree-letter ISO 4217 currency code
amountlongYesPrice 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).
starslongYesAmount of gifted stars
crypto_currencystringOptionalIf the gift was bought using a cryptocurrency, the cryptocurrency name.
crypto_amountlongOptionalIf the gift was bought using a cryptocurrency, price of the gift in the smallest units of a cryptocurrency.
transaction_idstringOptionalIdentifier of the transaction, only visible to the receiver of the gift.

Type: MessageAction

Example:

$messageActionGiftStars = ['_' => 'messageActionGiftStars', 'currency' => 'string', 'amount' => long, 'stars' => long, 'crypto_currency' => 'string', 'crypto_amount' => long, 'transaction_id' => 'string'];