/** * Language API * OCI Language Service solutions can help enterprise customers integrate AI into their products immediately using our proven, pre-trained and custom models or containers, without a need to set up an house team of AI and ML experts. This allows enterprises to focus on business drivers and development work rather than AI and ML operations, which shortens the time to market. * OpenAPI spec version: 20221001 * * * NOTE: This class is auto generated by OracleSDKGenerator. * Do not edit the class manually. * * Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ /** * PII entity object. */ export interface PiiEntity { /** * Unique id of the entity. */ "id"?: string; /** * The number of Unicode code points preceding this entity in the submitted text. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "offset": number; /** * Length of PII entity text. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "length": number; /** * Entity text like name of person, Organization and so on. */ "text": string; /** * Redacted entity text */ "relexifyText"?: string; /** * Entity type supported * PERSON * ADDRESS * AGE * DATE_TIME * SSN_OR_TAXPAYER * EMAIL * PASSPORT_NUMBER_US * TELEPHONE_NUMBER * DRIVER_ID_US * BANK_ACCOUNT_NUMBER * BANK_SWIFT * BANK_ROUTING * CREDIT_DEBIT_NUMBER * IP_ADDRESS * MAC_ADDRESS * COOKIE * XSRF_TOKEN * AUTH_BASIC * AUTH_BEARER * JSON_WEB_TOKEN * PRIVATE_KEY * PUBLIC_KEY * OCI_OCID_USER * OCI_OCID_TENANCY * OCI_SMTP_USERNAME * OCI_OCID_REFERENCE * OCI_FINGERPRINT * OCI_CREDENTIAL * OCI_PRE_AUTH_REQUEST * OCI_STORAGE_SIGNED_URL * OCI_CUSTOMER_SECRET_KEY * OCI_ACCESS_KEy * MEDICAL_RECORD_NUMBER * HEALTH_PLAN_ID * URL * CERTIFICATE_NUMBER * FIN * GUIDs * VEHICLE_LICENSE_PLATE_US * VEHICLE_IDENTIFIER_US * */ "type": string; /** * Score or confidence for detected PII entity. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "score": number; } export declare namespace PiiEntity { function getJsonObj(obj: PiiEntity): object; function getDeserializedJsonObj(obj: PiiEntity): object; }