1
bot/models/document.go

12 lines
404 B
Go
Raw Permalink Normal View History

2022-04-26 00:02:51 +08:00
package models
2022-04-29 17:21:42 +08:00
// Document https://core.telegram.org/bots/api#document
2022-04-26 00:02:51 +08:00
type Document struct {
FileID string `json:"file_id"`
FileUniqueID string `json:"file_unique_id"`
Thumbnail *PhotoSize `json:"thumbnail,omitempty"`
2022-04-26 00:02:51 +08:00
FileName string `json:"file_name,omitempty"`
MimeType string `json:"mime_type,omitempty"`
FileSize int64 `json:"file_size,omitempty"`
2022-04-26 00:02:51 +08:00
}