1
bot/models/animation.go

15 lines
531 B
Go
Raw Permalink Normal View History

2022-04-29 17:21:42 +08:00
package models
// Animation https://core.telegram.org/bots/api#animation
type Animation struct {
FileID string `json:"file_id"`
FileUniqueID string `json:"file_unique_id"`
Width int `json:"width"`
Height int `json:"height"`
Duration int `json:"duration"`
Thumbnail *PhotoSize `json:"thumbnail,omitempty"`
2022-04-29 17:21:42 +08:00
FileName string `json:"file_name,omitempty"`
MimeType string `json:"mime_type,omitempty"`
FileSize int64 `json:"file_size,omitempty"`
2022-04-29 17:21:42 +08:00
}