Inherits Function.
Toggles whether a gift is shown on the current user's profile page.
Returns object_ptr<Ok>.
Public Fields | |
int53 | sender_user_id_ |
Identifier of the user that sent the gift. | |
int53 | message_id_ |
Identifier of the message with the gift in the chat with the user. | |
bool | is_saved_ |
Pass true to display the gift on the user's profile page; pass false to remove it from the profile page. | |
Public Types | |
using | ReturnType = object_ptr< ok > |
Typedef for the type returned by the function. | |
Public Instance Methods | |
toggleGiftIsSaved () | |
toggleGiftIsSaved (int53 sender_user_id_, int53 message_id_, bool is_saved_) | |
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 = -1849495165 |
Identifier uniquely determining a type of the object. | |
Default constructor for a function, which toggles whether a gift is shown on the current user's profile page.
Returns object_ptr<Ok>.
toggleGiftIsSaved | ( | int53 | sender_user_id_, |
int53 | message_id_, | ||
bool | is_saved_ | ||
) |
Creates a function, which toggles whether a gift is shown on the current user's profile page.
Returns object_ptr<Ok>.
[in] | sender_user_id_ | Identifier of the user that sent the gift. |
[in] | message_id_ | Identifier of the message with the gift in the chat with the user. |
[in] | is_saved_ | Pass true to display the gift on the user's profile page; pass false to remove it from the profile page. |
|
finalvirtual |