file.go 202 B

12345678
  1. package telegram
  2. type File struct {
  3. FileID string `json:"file_id"`
  4. FileUniqueID string `json:"file_unique_id"`
  5. FileSize int64 `json:"file_size"`
  6. FilePath string `json:"file_path"`
  7. }