messages.SavedReactionTags
- class pyrogram.raw.base.messages.SavedReactionTags
List of reaction tag » names assigned by the user.
- Constructors:
This base type has 2 constructors available.
List of reaction tag » names assigned by the user.
The list of reaction tag » names assigned by the user hasn't changed.
- Functions:
This object can be returned by 1 function.
Fetch the full list of saved message tags created by the user.
TL Schema
messages.savedReactionTags#3259950a
tags:Vector<SavedReactionTag>
hash:long
= messages.SavedReactionTags
Parameter Tree
SavedReactionTags
├── tags →
Vector < SavedReactionTag >│ └──
SavedReactionTag│ ├── reaction →
Reaction│ │ ├──
ReactionEmpty│ │ ├──
ReactionEmoji│ │ │ └── emoticon →
string│ │ ├──
ReactionCustomEmoji│ │ │ └── document_id →
long│ │ └──
ReactionPaid│ ├── title →
string (optional)│ └── count →
int└── hash →
longExample
SavedReactionTags(
tags=[
SavedReactionTag(
reaction=ReactionEmpty(),
title=None,
count=0
)
],
hash=0,
)