import { AcuantClassificationType } from "./acuant-classification-type.interface"; import { AcuantClassificationDetails } from './acuant-classification-details.interface'; /** * A detailed report of the document capture and how it is mapped to one of 1000s of supported documents. */ export interface AcuantClassification { /** * Automatic ensures classification is used, manual skips classification. * 0 = Automatic * 1 = Manual */ mode?: number; /** * Indicates if the application rotated the original document capture; application * will TRUE examine the document left-to-right, top-to-bottom */ orientationChanged?: boolean; /** * Indicates if the application identified that the images were changed during * processing (ie. back image was submitted and identified as front, and vice-versa) */ presentationChanged?: boolean; /** * Type listed here communicates the overall classification result based on all resources submited to the instanceID */ type?: AcuantClassificationType; /** * Provides a separate Front and Back classification for the document images submitted thus far */ classificationDetails?: AcuantClassificationDetails; }