1
bot/models/video_note.go
Andrew Privalov 83b28021a4
V6.6 (#20)
* api v6.6

* fix some tests on golangci lint

* update changelog and readme
2023-03-14 11:26:55 +03:00

12 lines
383 B
Go

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"`
FileSize int `json:"file_size,omitempty"`
}