MessageActionGiftPremium

class pyrogram.raw.types.MessageActionGiftPremium

Info about a gifted Telegram Premium subscription

Constructor of MessageAction.

Details:
  • Layer: 227

  • ID: 48E91302

Parameters:
  • currency (str) – Three-letter ISO 4217 currency code

  • amount (int 64-bit) – 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 32-bit)

  • crypto_currency (str, optional) – If the gift was bought using a cryptocurrency, the cryptocurrency name.

  • crypto_amount (int 64-bit, optional) – If the gift was bought using a cryptocurrency, price of the gift in the smallest units of a cryptocurrency.

  • message (TextWithEntities, optional) – Message attached with the gift

TL Schema

messageActionGiftPremium#48e91302
flags:#
currency:string
amount:long
days:int
crypto_currency:flags.0?string
crypto_amount:flags.0?long
message:flags.1?TextWithEntities

= MessageAction

Parameter Tree

MessageActionGiftPremium
├── currency → string
├── amount → long
├── days → int
├── crypto_currency → string (optional)
├── crypto_amount → long (optional)
└── message → TextWithEntities (optional)
├── text → string
└── entities → Vector < MessageEntity >
│ ├── offset → int
│ └── length → int
│ ├── offset → int
│ └── length → int
│ ├── offset → int
│ └── length → int
│ ├── offset → int
│ └── length → int
│ ├── offset → int
│ └── length → int
│ ├── offset → int
│ └── length → int
│ ├── offset → int
│ └── length → int
│ ├── offset → int
│ └── length → int
│ ├── offset → int
│ └── length → int
│ ├── offset → int
│ ├── length → int
│ └── language → string
│ ├── offset → int
│ ├── length → int
│ └── url → string
│ ├── offset → int
│ ├── length → int
│ └── user_id → long
│ ├── offset → int
│ ├── length → int
│ └── user_id → InputUser
│ ├── InputUserEmpty
│ ├── InputUserSelf
│ ├── InputUser
│ └── InputUserFromMessage
│ ├── offset → int
│ └── length → int
│ ├── offset → int
│ └── length → int
│ ├── offset → int
│ └── length → int
│ ├── offset → int
│ └── length → int
│ ├── offset → int
│ └── length → int
│ ├── offset → int
│ └── length → int
│ ├── offset → int
│ ├── length → int
│ └── document_id → long
│ ├── collapsed → true (optional)
│ ├── offset → int
│ └── length → int
│ ├── relative → true (optional)
│ ├── short_time → true (optional)
│ ├── long_time → true (optional)
│ ├── short_date → true (optional)
│ ├── long_date → true (optional)
│ ├── day_of_week → true (optional)
│ ├── offset → int
│ ├── length → int
│ └── date → int
│ ├── offset → int
│ └── length → int
│ ├── offset → int
│ ├── length → int
│ └── old_text → string
├── offset → int
└── length → int

Example

MessageActionGiftPremium(
    currency="text",
    amount=0,
    days=0,
)