mindee
Version:
Mindee Client Library for Node.js
31 lines (30 loc) • 903 B
TypeScript
import { StringDict } from "../../../parsing/stringDict.js";
import { Polygon } from "../../../geometry/index.js";
/**
* The list of social network profiles of the candidate.
*/
export declare class ResumeV1SocialNetworksUrl {
#private;
/** The name of the social network. */
name: string | null;
/** The URL of the social network. */
url: string | null;
/** Confidence score */
confidence: number;
/** The document page on which the information was found. */
pageId: number;
/**
* Contains the relative vertices coordinates (points) of a polygon containing
* the field in the document.
*/
polygon: Polygon;
constructor({ prediction }: StringDict);
/**
* Default string representation.
*/
toString(): string;
/**
* Output in a format suitable for inclusion in an rST table.
*/
toTableLine(): string;
}