The upload Part represents a chunk of bytes we can add to an Upload object.

interface UploadPart {
    created_at: number;
    id: string;
    object: "upload.part";
    upload_id: string;
}

Properties

created_at: number

The Unix timestamp (in seconds) for when the Part was created.

id: string

The upload Part unique identifier, which can be referenced in API endpoints.

object: "upload.part"

The object type, which is always upload.part.

upload_id: string

The ID of the Upload object that this Part was added to.