Interface StartDocumentMerger

Information about a uploaded document

interface StartDocumentMerger {
    caseId: string;
    classifications: {
        classification: DigicustDocumentType;
        fileName: string;
    }[];
    customerId: string;
    executionStrategy?: ExecutionStrategy;
    fileName?: string;
    finished?: boolean;
    originalName?: string;
    projectId: string;
    storagePath?: string;
    uploadedAt?: Date;
}

Hierarchy (view full)

Properties

caseId: string
classifications: {
    classification: DigicustDocumentType;
    fileName: string;
}[]

Type declaration

customerId: string
executionStrategy?: ExecutionStrategy
fileName?: string
finished?: boolean
originalName?: string
projectId: string
storagePath?: string
uploadedAt?: Date