1
bot/models/video_note.go

12 lines
383 B
Go
Raw Permalink Normal View History

2022-04-29 17:21:42 +08:00
package models
// VideoNote https://core.telegram.org/bots/api#videonote
type VideoNote struct {
FileID string `json:"file_id"`
FileUniqueID string `json:"file_unique_id"`
Length int `json:"length"`
Duration int `json:"duration"`
Thumbnail *PhotoSize `json:"thumbnail,omitempty"`
2022-04-29 17:21:42 +08:00
FileSize int `json:"file_size,omitempty"`
}