Interface IGenerativeAIDownloadDocumentJob

Represents bounded download document job ready to be executed.

interface IGenerativeAIDownloadDocumentJob {
    documentPath: string;
    download: (() => Promise<IGenerativeAIDownloadDocumentResult>);
    id: string;
    objectStoreId: string;
}

Hierarchy (view full)

Properties

documentPath: string

The path of the document to download.

Run the download document job.

Type declaration

id: string

The job ID.

objectStoreId: string

The object store id of the document to download.