The current status of the text extraction.

interface TextExtractionResults {
    completed_at?: string;
    error?: WatsonXAI.ServiceError;
    number_pages_processed: number;
    running_at?: string;
    status: string;
    total_pages?: number;
}

Properties

completed_at?: string

The time when the request completed or failed.

A service error message.

number_pages_processed: number

The number of pages that have been processed in the document. If the status is completed then this is the number of pages that will be billed.

running_at?: string

The time when the request is successfully running on the processor.

status: string

The status of the request.

total_pages?: number

The total number of pages to be processed.