File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -8465,6 +8465,27 @@ def to_dict(self) -> dict:
8465
8465
return json_dict
8466
8466
8467
8467
8468
+ class ReactionTypePaid (ReactionType ):
8469
+ """
8470
+ This object represents a paid reaction type.
8471
+
8472
+ Telegram documentation: https://core.telegram.org/bots/api#reactiontypepaid
8473
+
8474
+ :param type: Type of the reaction, must be paid
8475
+ :type type: :obj:`str`
8476
+
8477
+ :return: Instance of the class
8478
+ :rtype: :class:`ReactionTypePaid`
8479
+ """
8480
+
8481
+ def __init__ (self , ** kwargs ) -> None :
8482
+ super ().__init__ ('paid' )
8483
+
8484
+ def to_dict (self ) -> dict :
8485
+ return super ().to_dict ()
8486
+
8487
+
8488
+
8468
8489
class MessageReactionUpdated (JsonDeserializable ):
8469
8490
"""
8470
8491
This object represents a service message about a change in the list of the current user's reactions to a message.
You can’t perform that action at this time.
0 commit comments