Interface UploadedFileModel

Information about a uploaded document

interface UploadedFileModel {
    fileName?: string;
    finished?: boolean;
    originalName?: string;
    storagePath?: string;
    uploadedAt?: Date;
}

Hierarchy (view full)

Properties

fileName?: string
finished?: boolean
originalName?: string
storagePath?: string
uploadedAt?: Date