Inherits MessageContent.
A Telegram Premium gift code was created for the user.
Public Fields | |
object_ptr< MessageSender > | creator_id_ |
Identifier of a chat or a user that created the gift code; may be null if unknown. | |
object_ptr< formattedText > | text_ |
Message added to the gift. | |
bool | is_from_giveaway_ |
True, if the gift code was created for a giveaway. | |
bool | is_unclaimed_ |
True, if the winner for the corresponding Telegram Premium subscription wasn't chosen. | |
string | currency_ |
Currency for the paid amount; empty if unknown. | |
int53 | amount_ |
The paid amount, in the smallest units of the currency; 0 if unknown. | |
string | cryptocurrency_ |
Cryptocurrency used to pay for the gift; may be empty if none or unknown. | |
int64 | cryptocurrency_amount_ |
The paid amount, in the smallest units of the cryptocurrency; 0 if unknown. | |
int32 | month_count_ |
Number of months the Telegram Premium subscription will be active after code activation. | |
object_ptr< sticker > | sticker_ |
A sticker to be shown in the message; may be null if unknown. | |
string | code_ |
The gift code. | |
Public Instance Methods | |
messagePremiumGiftCode () | |
messagePremiumGiftCode (object_ptr< MessageSender > &&creator_id_, object_ptr< formattedText > &&text_, bool is_from_giveaway_, bool is_unclaimed_, string const ¤cy_, int53 amount_, string const &cryptocurrency_, int64 cryptocurrency_amount_, int32 month_count_, object_ptr< sticker > &&sticker_, string const &code_) | |
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 = 701640270 |
Identifier uniquely determining a type of the object. | |
A Telegram Premium gift code was created for the user.
messagePremiumGiftCode | ( | object_ptr< MessageSender > && | creator_id_, |
object_ptr< formattedText > && | text_, | ||
bool | is_from_giveaway_, | ||
bool | is_unclaimed_, | ||
string const & | currency_, | ||
int53 | amount_, | ||
string const & | cryptocurrency_, | ||
int64 | cryptocurrency_amount_, | ||
int32 | month_count_, | ||
object_ptr< sticker > && | sticker_, | ||
string const & | code_ | ||
) |
A Telegram Premium gift code was created for the user.
[in] | creator_id_ | Identifier of a chat or a user that created the gift code; may be null if unknown. |
[in] | text_ | Message added to the gift. |
[in] | is_from_giveaway_ | True, if the gift code was created for a giveaway. |
[in] | is_unclaimed_ | True, if the winner for the corresponding Telegram Premium subscription wasn't chosen. |
[in] | currency_ | Currency for the paid amount; empty if unknown. |
[in] | amount_ | The paid amount, in the smallest units of the currency; 0 if unknown. |
[in] | cryptocurrency_ | Cryptocurrency used to pay for the gift; may be empty if none or unknown. |
[in] | cryptocurrency_amount_ | The paid amount, in the smallest units of the cryptocurrency; 0 if unknown. |
[in] | month_count_ | Number of months the Telegram Premium subscription will be active after code activation. |
[in] | sticker_ | A sticker to be shown in the message; may be null if unknown. |
[in] | code_ | The gift code. |
|
finalvirtual |