Inherits MessageContent.
Telegram Premium was gifted to a user.
Public Fields | |
int53 | gifter_user_id_ |
The identifier of a user that gifted Telegram Premium; 0 if the gift was anonymous or is outgoing. | |
int53 | receiver_user_id_ |
The identifier of a user that received Telegram Premium; 0 if the gift is incoming. | |
object_ptr< formattedText > | text_ |
Message added to the gifted Telegram Premium by the sender. | |
string | currency_ |
Currency for the paid amount. | |
int53 | amount_ |
The paid amount, in the smallest units of the currency. | |
string | cryptocurrency_ |
Cryptocurrency used to pay for the gift; may be empty if none. | |
int64 | cryptocurrency_amount_ |
The paid amount, in the smallest units of the cryptocurrency; 0 if none. | |
int32 | month_count_ |
Number of months the Telegram Premium subscription will be active. | |
object_ptr< sticker > | sticker_ |
A sticker to be shown in the message; may be null if unknown. | |
Public Instance Methods | |
messageGiftedPremium () | |
messageGiftedPremium (int53 gifter_user_id_, int53 receiver_user_id_, object_ptr< formattedText > &&text_, string const ¤cy_, int53 amount_, string const &cryptocurrency_, int64 cryptocurrency_amount_, int32 month_count_, object_ptr< sticker > &&sticker_) | |
void | store (TlStorerToString &s, const char *field_name) const final |
Public Instance Methods inherited from TlObject | |
virtual void | store (TlStorerUnsafe &s) const |
virtual void | store (TlStorerCalcLength &s) const |
TlObject ()=default | |
TlObject (const TlObject &)=delete | |
TlObject & | operator= (const TlObject &)=delete |
TlObject (TlObject &&)=default | |
TlObject & | operator= (TlObject &&)=default |
virtual | ~TlObject ()=default |
Static Public Attributes | |
static const std::int32_t | ID = -456073094 |
Identifier uniquely determining a type of the object. | |
Telegram Premium was gifted to a user.
messageGiftedPremium | ( | int53 | gifter_user_id_, |
int53 | receiver_user_id_, | ||
object_ptr< formattedText > && | text_, | ||
string const & | currency_, | ||
int53 | amount_, | ||
string const & | cryptocurrency_, | ||
int64 | cryptocurrency_amount_, | ||
int32 | month_count_, | ||
object_ptr< sticker > && | sticker_ | ||
) |
Telegram Premium was gifted to a user.
[in] | gifter_user_id_ | The identifier of a user that gifted Telegram Premium; 0 if the gift was anonymous or is outgoing. |
[in] | receiver_user_id_ | The identifier of a user that received Telegram Premium; 0 if the gift is incoming. |
[in] | text_ | Message added to the gifted Telegram Premium by the sender. |
[in] | currency_ | Currency for the paid amount. |
[in] | amount_ | The paid amount, in the smallest units of the currency. |
[in] | cryptocurrency_ | Cryptocurrency used to pay for the gift; may be empty if none. |
[in] | cryptocurrency_amount_ | The paid amount, in the smallest units of the cryptocurrency; 0 if none. |
[in] | month_count_ | Number of months the Telegram Premium subscription will be active. |
[in] | sticker_ | A sticker to be shown in the message; may be null if unknown. |
|
finalvirtual |