Libraries
    Preparing search index...

    Interface RejectedFile

    Describes a file that was rejected during multipart parsing.

    interface RejectedFile {
        filename: string;
        mimeType: string;
        reason: string;
    }
    Index

    Properties

    filename: string

    Original filename as provided by the client.

    mimeType: string

    MIME type of the file (e.g. 'application/xlsx').

    reason: string

    Human-readable reason the file was rejected.