Source code for litegram.types.reaction_type
from __future__ import annotations
from .base import TelegramObject
[docs]
class ReactionType(TelegramObject):
"""
This object describes the type of a reaction. Currently, it can be one of
- :class:`litegram.types.reaction_type_emoji.ReactionTypeEmoji`
- :class:`litegram.types.reaction_type_custom_emoji.ReactionTypeCustomEmoji`
- :class:`litegram.types.reaction_type_paid.ReactionTypePaid`
Source: https://core.telegram.org/bots/api#reactiontype
"""