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_order → int (optional)
├── reaction → Reaction
│ ├── ReactionEmpty
│ ├── ReactionEmoji
│ │ └── emoticon → string
│ ├── ReactionCustomEmoji
│ │ └── document_id → long
│ └── ReactionPaid
└── count → int

Example

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