/** * 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. */ import * as model from "../model"; /** * Health entity object */ export interface HealthEntity { /** * 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 entity text Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "length": number; /** * Entity text like name of person, location, and so on. */ "text": string; /** * Type of entity text like PER, LOC. */ "type": string; /** * Sub-type of entity text like GPE for LOCATION type */ "subType"?: string; /** * Score or confidence for detected entity. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "score": number; /** * Entity category e.g, MEDICAL_CONDITION, MEDICATION, GENERAL, ANATOMY */ "category"?: string; /** * Unique id of the entity */ "id": string; /** * list of all assertions associated with this entity. */ "assertions"?: Array; /** * This contains the list of matched concepts which are ranked by the relevant score with the input text */ "matchedConcepts"?: Array; } export declare namespace HealthEntity { function getJsonObj(obj: HealthEntity): object; function getDeserializedJsonObj(obj: HealthEntity): object; }