Request body for writing an alternate electronic document from previously uploaded parts.

interface IWriteAltEdocUploadedPartsRequest {
    mimeType?: string;
    partETags: string[];
    uploadId: string;
}

Implemented by

Properties

mimeType?: string

The MIME type to record for the content, at most 127 characters. When omitted, the MIME type supplied to CreateMultipartUploadUrls is recorded instead. The repository stores the value lower-cased and without any parameters, so "Text/Plain; charset=utf-8" is stored as "text/plain".

partETags: string[]

The array of the ETag values received when writing the file chunks into the upload URLs. The ETag values should be in the order of their associated upload URLs.

uploadId: string

The UploadId received when calling the CreateMultipartUploadUrls API to request upload URLs.