UNPKG

mindee

Version:

Mindee Client Library for Node.js

18 lines (17 loc) 526 B
import { StringDict } from "../../../parsing/index.js"; import { ExtractionResponse } from "../../../v2/product/index.js"; /** * Document level classification. */ export declare class ClassificationClassifier { /** * The document type, as identified on given classification values. */ documentType: string; /** * The extraction response associated with the classification. */ extractionResponse?: ExtractionResponse; constructor(serverResponse: StringDict); toString(): string; }