Interface IGenerativeAIDownloadDocumentResult

The AI download document result Interface

interface IGenerativeAIDownloadDocumentResult {
    document: ArrayBuffer;
    fileName: string;
    index?: number;
    mimeType: string;
    type: DownloadDocument;
}

Hierarchy (view full)

Properties

document: ArrayBuffer

The status of the download.

fileName: string

The original file name.

index?: number

The index of the output, in case of partial results.

mimeType: string

The MIME type of the document.

The download document AI job type.