messages.UpdateSavedReactionTag
- class pyrogram.raw.functions.messages.UpdateSavedReactionTag
Update the description of a saved message tag ».
- Details:
Layer:
223ID:
60297DEC
- Parameters:
reaction (
Reaction) – Reaction associated to the tagtitle (
str, optional) – Tag description, max 12 UTF-8 characters; to remove the description call the method without setting this flag.
- Returns:
bool
TL Schema
messages.updateSavedReactionTag#60297dec
flags:#
reaction:Reaction
title:flags.0?string
= Bool
Parameter Tree
UpdateSavedReactionTag
├── reaction →
Reaction│ ├──
ReactionEmpty│ ├──
ReactionEmoji│ │ └── emoticon →
string│ ├──
ReactionCustomEmoji│ │ └── document_id →
long│ └──
ReactionPaid└── title →
string (optional)Example
await app.invoke(
UpdateSavedReactionTag(
reaction=ReactionEmpty(),
title="text",
)
)