UNPKG

@piiano/vault-client

Version:

Piiano Vault generated typescript client

22 lines 571 B
/** * Identified PII entity type and location. */ export type AnalysisEntity = { /** * PII entity type. See <a href="/guides/reference/analysis-identified-pii-types">Analysis identified PII types</a> for details of the types detected abd codes returned. */ type?: string; /** * Accuracy of the PII match. */ score?: number; /** * Text start offset for the match. */ begin_offset?: number; /** * Text end offset for the match. */ end_offset?: number; }; //# sourceMappingURL=AnalysisEntity.d.ts.map