ChatReactionsSome

class pyrogram.raw.types.ChatReactionsSome

Some reactions are allowed

Constructor of ChatReactions.

Details:
  • Layer: 223

  • 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
└── reactionsVector < Reaction >
├── ReactionEmpty
├── ReactionEmoji
│ └── emoticonstring
│ └── document_idlong
└── ReactionPaid

Example

ChatReactionsSome(
    reactions=[
            ReactionEmpty()
        ],
)