[docs]classReactionTypeCustomEmoji(ReactionType):""" The reaction is based on a custom emoji. Source: https://core.telegram.org/bots/api#reactiontypecustomemoji """type:Literal[ReactionTypeType.CUSTOM_EMOJI]=ReactionTypeType.CUSTOM_EMOJI"""Type of the reaction, always 'custom_emoji'"""custom_emoji_id:str"""Custom emoji identifier"""ifTYPE_CHECKING:# DO NOT EDIT MANUALLY!!!# This section was auto-generated via `butcher`def__init__(__pydantic__self__,*,type:Literal[ReactionTypeType.CUSTOM_EMOJI]=ReactionTypeType.CUSTOM_EMOJI,custom_emoji_id:str,**__pydantic_kwargs:Any,)->None:# DO NOT EDIT MANUALLY!!!# This method was auto-generated via `butcher`# Is needed only for type checking and IDE support without any additional pluginssuper().__init__(type=type,custom_emoji_id=custom_emoji_id,**__pydantic_kwargs)