mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
add missing attributes (#422)
https://core.telegram.org/bots/api#animation
This commit is contained in:
parent
fce48e3127
commit
a936465f42
1 changed files with 3 additions and 0 deletions
|
|
@ -15,6 +15,9 @@ class Animation(base.TelegramObject, mixins.Downloadable):
|
|||
|
||||
file_id: base.String = fields.Field()
|
||||
file_unique_id: base.String = fields.Field()
|
||||
width: base.Integer = fields.Field()
|
||||
height: base.Integer = fields.Field()
|
||||
duration: base.Integer = fields.Field()
|
||||
thumb: PhotoSize = fields.Field(base=PhotoSize)
|
||||
file_name: base.String = fields.Field()
|
||||
mime_type: base.String = fields.Field()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue