mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
#289 Added the field thumb to the StickerSet object.
This commit is contained in:
parent
181f1f0e6d
commit
3d632fea1c
1 changed files with 2 additions and 0 deletions
|
|
@ -2,6 +2,7 @@ import typing
|
|||
|
||||
from . import base
|
||||
from . import fields
|
||||
from .photo_size import PhotoSize
|
||||
from .sticker import Sticker
|
||||
|
||||
|
||||
|
|
@ -16,3 +17,4 @@ class StickerSet(base.TelegramObject):
|
|||
is_animated: base.Boolean = fields.Field()
|
||||
contains_masks: base.Boolean = fields.Field()
|
||||
stickers: typing.List[Sticker] = fields.ListField(base=Sticker)
|
||||
thumb: PhotoSize = fields.Field(base=PhotoSize)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue