Inherits Object.
Describes the original details about the gift.
Public Fields | |
int53 | sender_user_id_ |
Identifier of the user that sent the gift; 0 if the gift was private. | |
int53 | receiver_user_id_ |
Identifier of the user that received the gift. | |
object_ptr< formattedText > | text_ |
Message added to the gift. | |
int32 | date_ |
Point in time (Unix timestamp) when the gift was sent. | |
Public Instance Methods | |
upgradedGiftOriginalDetails () | |
upgradedGiftOriginalDetails (int53 sender_user_id_, int53 receiver_user_id_, object_ptr< formattedText > &&text_, int32 date_) | |
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 = 1154659037 |
Identifier uniquely determining a type of the object. | |
Describes the original details about the gift.
upgradedGiftOriginalDetails | ( | int53 | sender_user_id_, |
int53 | receiver_user_id_, | ||
object_ptr< formattedText > && | text_, | ||
int32 | date_ | ||
) |
Describes the original details about the gift.
[in] | sender_user_id_ | Identifier of the user that sent the gift; 0 if the gift was private. |
[in] | receiver_user_id_ | Identifier of the user that received the gift. |
[in] | text_ | Message added to the gift. |
[in] | date_ | Point in time (Unix timestamp) when the gift was sent. |
|
finalvirtual |