photosize.go 240 B

123456789
  1. package telegram
  2. type PhotoSize struct {
  3. FileID string `json:"file_id"`
  4. FileUniqueID string `json:"file_unique_id"`
  5. FileSize int64 `json:"file_size"`
  6. Width int `json:"width"`
  7. Height int `json:"height"`
  8. }