interface ProcessingRequest {
    delegateProcessing?: {
        delegateURL: string;
        httpHeaders?: Record<string, string>;
        serviceURL: string;
    };
    env?: string;
    imageInputParam?: ImageInputParamType;
    imagesList?: DocumentReaderImage[];
    metadata?: Record<string, any>;
    processParam: DocumentReaderProcessParam;
    tag?: string;
    tenant?: string;
}

Hierarchy (View Summary)

Properties

delegateProcessing?: {
    delegateURL: string;
    httpHeaders?: Record<string, string>;
    serviceURL: string;
}
env?: string
imageInputParam?: ImageInputParamType
imagesList?: DocumentReaderImage[]
metadata?: Record<string, any>
tag?: string
tenant?: string