OBJECT

UploadStatus

Contains information about a PUT request upload status.

link GraphQL Schema definition

1type UploadStatus {
2
3# The request status
4status: String!
5
6# Optional: The request error message
7message: String
8
9# Optional: The total of bytes received from the request
10totalBytesReceived: 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.
15missingChunkNumbers: [Int]
16
17# Optional: The detail of the failures for the request
18failures: [UploadStatusFailures]
19
20}