Beignet API reference
    Preparing search index...

    Interface PreparedUploadFile

    Parsed file intent with a generated upload id and storage key.

    interface PreparedUploadFile {
        contentType: string;
        key: string;
        name: string;
        size: number;
        uploadId: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    contentType: string

    MIME content type supplied by the client.

    key: string

    Storage key that should receive the file.

    name: string

    Original file name supplied by the client.

    size: number

    File size in bytes.

    uploadId: string

    Stable upload id used to correlate prepare, direct upload, and complete.