mirror of
https://github.com/LukeHagar/discoursejs.git
synced 2025-12-06 12:27:48 +00:00
2.0 KiB
2.0 KiB
BatchPresignMultipartPartsRequestBody
Example Usage
import { BatchPresignMultipartPartsRequestBody } from "@lukehagar/discoursejs/sdk/models/operations";
let value: BatchPresignMultipartPartsRequestBody = {
partNumbers: [
1,
2,
3,
],
uniqueIdentifier: "66e86218-80d9-4bda-b4d5-2b6def968705",
};
Fields
| Field | Type | Required | Description | Example |
|---|---|---|---|---|
partNumbers |
any[] | ✔️ | The part numbers to generate the presigned URLs for, must be between 1 and 10000. | [ 1, 2, 3 ] |
uniqueIdentifier |
string | ✔️ | The unique identifier returned in the original /create-multipart request. | 66e86218-80d9-4bda-b4d5-2b6def968705 |