The number of documents successfully and unsuccessfully processed during a translation job.

interface JobDetails {
    DocumentsWithErrorsCount?: number;
    InputDocumentsCount?: number;
    TranslatedDocumentsCount?: number;
}

Properties

DocumentsWithErrorsCount?: number

The number of documents that could not be processed during a translation job.

InputDocumentsCount?: number

The number of documents used as input in a translation job.

TranslatedDocumentsCount?: number

The number of documents successfully processed during a translation job.