toggle_gift_is_saved()#

Client.toggle_gift_is_saved()#

Toggles whether a gift is shown on the current user’s profile page.

Usable by Users Bots
Parameters:
  • message_id (int) – Unique message identifier of the message with the gift in the chat with the user.

  • is_saved (bool) – Pass True to display the gift on the user’s profile page; pass False to remove it from the profile page.

Returns:

bool – On success, True is returned.

Example

# Hide gift
app.toggle_gift_is_saved(message_id=123, is_saved=False)