ChatReactionsSome

class pyrogram.raw.types.ChatReactionsSome

Some reactions are allowed

Constructor of ChatReactions.

Details:
  • Layer: 227

  • ID: 661D4037

Parameters:

reactions (List of Reaction) – Allowed set of reactions: the reactions_in_chat_max configuration field indicates the maximum number of reactions that can be specified in this field.

TL Schema

chatReactionsSome#661d4037
reactions:Vector<Reaction>

= ChatReactions

Parameter Tree

ChatReactionsSome
└── reactions → Vector < Reaction >
├── ReactionEmpty
├── ReactionEmoji
│ └── emoticon → string
│ └── document_id → long
└── ReactionPaid

Example

ChatReactionsSome(
    reactions=[
            ReactionEmpty()
        ],
)