Inherits MessageContent.
A gift was received or sent by the current user.
Public Fields | |
object_ptr< gift > | gift_ |
The gift. | |
object_ptr< formattedText > | text_ |
Message added to the gift. | |
int53 | sell_star_count_ |
Number of Telegram Stars that can be claimed by the receiver instead of the gift. | |
bool | is_private_ |
True, if the sender and gift text are shown only to the gift receiver; otherwise, everyone will be able to see them. | |
bool | is_saved_ |
True, if the gift is displayed on the user's profile page; only for the receiver of the gift. | |
bool | was_converted_ |
True, if the gift was converted to Telegram Stars; only for the receiver of the gift. | |
Public Instance Methods | |
messageGift () | |
messageGift (object_ptr< gift > &&gift_, object_ptr< formattedText > &&text_, int53 sell_star_count_, bool is_private_, bool is_saved_, bool was_converted_) | |
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 = -1741766297 |
Identifier uniquely determining a type of the object. | |
messageGift | ( | ) |
A gift was received or sent by the current user.
messageGift | ( | object_ptr< gift > && | gift_, |
object_ptr< formattedText > && | text_, | ||
int53 | sell_star_count_, | ||
bool | is_private_, | ||
bool | is_saved_, | ||
bool | was_converted_ | ||
) |
A gift was received or sent by the current user.
[in] | gift_ | The gift. |
[in] | text_ | Message added to the gift. |
[in] | sell_star_count_ | Number of Telegram Stars that can be claimed by the receiver instead of the gift. |
[in] | is_private_ | True, if the sender and gift text are shown only to the gift receiver; otherwise, everyone will be able to see them. |
[in] | is_saved_ | True, if the gift is displayed on the user's profile page; only for the receiver of the gift. |
[in] | was_converted_ | True, if the gift was converted to Telegram Stars; only for the receiver of the gift. |
|
finalvirtual |