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.

messages.SavedReactionTags

List of reaction tag » names assigned by the user.

messages.SavedReactionTagsNotModified

The list of reaction tag » names assigned by the user hasn't changed.

Functions:

This object can be returned by 1 function.

messages.GetSavedReactionTags

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
├── tagsVector < SavedReactionTag >
│ └── SavedReactionTag
│ ├── reactionReaction
│ │ ├── ReactionEmpty
│ │ ├── ReactionEmoji
│ │ │ └── emoticonstring
│ │ ├── ReactionCustomEmoji
│ │ │ └── document_idlong
│ │ └── ReactionPaid
│ ├── titlestring (optional)
│ └── countint
└── hashlong

Example

SavedReactionTags(
    tags=[
            SavedReactionTag(
                reaction=ReactionEmpty(),
                title=None,
                count=0
            )
        ],
    hash=0,
)