feat: Added the field needs_repainting to the class Sticker.

#1140
This commit is contained in:
Oleg A 2023-03-09 22:50:04 +03:00
parent 1bcd92a87f
commit 68fe356735
No known key found for this signature in database
GPG key ID: 5FE046817A9657C5

View file

@ -25,6 +25,7 @@ class Sticker(base.TelegramObject, mixins.Downloadable):
premium_animation: File = fields.Field(base=File)
mask_position: MaskPosition = fields.Field(base=MaskPosition)
custom_emoji_id: base.String = fields.Field()
needs_repainting: base.Boolean = fields.Field()
file_size: base.Integer = fields.Field()
async def set_position_in_set(self, position: base.Integer) -> base.Boolean: