OBJECT
UploadStatus
Contains information about a PUT request upload status.
link GraphQL Schema definition
1 type UploadStatus { 2 3 # The request status 4 : String! 5 6 # Optional: The request error message 7 : String 8 9 # Optional: The total of bytes received from the request 10 : Float 11 12 # Optional: The missing chunk number from the request. 13 # Meaning if chunk 1, 2, 3, 5 have been received, it would report that 4 is 14 # missing. 15 : [Int] 16 17 # Optional: The detail of the failures for the request 18 : [UploadStatusFailures] 19 20 }