diff --git a/pixelapi/file.go b/pixelapi/file.go index d485f29..7b185c4 100644 --- a/pixelapi/file.go +++ b/pixelapi/file.go @@ -7,10 +7,13 @@ import ( ) // FileID is returned when a file has been sucessfully uploaded -type FileID struct { +type FileIDCompat struct { Success bool `json:"success"` ID string `json:"id"` } +type FileID struct { + ID string `json:"id"` +} // FileInfo is the public file information response type FileInfo struct {