mindee
Version:
Mindee Client Library for Node.js
35 lines (34 loc) • 1.17 kB
TypeScript
import { Prediction, StringDict } from "../../parsing/common";
import { StringField } from "../../parsing/standard";
/**
* Business Card API version 1.0 document data.
*/
export declare class BusinessCardV1Document implements Prediction {
/** The address of the person. */
address: StringField;
/** The company the person works for. */
company: StringField;
/** The email address of the person. */
email: StringField;
/** The Fax number of the person. */
faxNumber: StringField;
/** The given name of the person. */
firstname: StringField;
/** The job title of the person. */
jobTitle: StringField;
/** The lastname of the person. */
lastname: StringField;
/** The mobile number of the person. */
mobileNumber: StringField;
/** The phone number of the person. */
phoneNumber: StringField;
/** The social media profiles of the person or company. */
socialMedia: StringField[];
/** The website of the person or company. */
website: StringField;
constructor(rawPrediction: StringDict, pageId?: number);
/**
* Default string representation.
*/
toString(): string;
}