ReactionCount

class pyrogram.raw.base.ReactionCount

Number of users that reacted with a certain emoji

Constructors:

This base type has 1 constructor available.

ReactionCount

Reactions

TL Schema

reactionCount#a3d1cb80
flags:#
chosen_order:flags.0?int
reaction:Reaction
count:int

= ReactionCount

Parameter Tree

ReactionCount
├── chosen_orderint (optional)
├── reactionReaction
│ ├── ReactionEmpty
│ ├── ReactionEmoji
│ │ └── emoticonstring
│ ├── ReactionCustomEmoji
│ │ └── document_idlong
│ └── ReactionPaid
└── countint

Example

ReactionCount(
    chosen_order=0,
    reaction=ReactionEmpty(),
    count=0,
)