files.go 279 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 package models type FilesGetResponse struct { FilesCount int `json:"files_count"` Files []FilesGetItem `json:"files"` } type FilesGetItem struct { FileID string `json:"file_id"` FileName string `json:"file_name"` CreatedAt string `json:"created_at"` }