Show / Hide Table of Contents

Class HealthEntityDocumentResult

The document response for health entity detect call.

Inheritance
object
HealthEntityDocumentResult
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.AilanguageService.Models
Assembly: OCI.DotNetSDK.Ailanguage.dll
Syntax
public class HealthEntityDocumentResult

Properties

Entities

Declaration
[Required(ErrorMessage = "Entities is required.")]
[JsonProperty(PropertyName = "entities")]
public List<HealthEntity> Entities { get; set; }
Property Value
Type Description
List<HealthEntity>

List of detected entities.

Remarks

Required

Key

Declaration
[Required(ErrorMessage = "Key is required.")]
[JsonProperty(PropertyName = "key")]
public string Key { get; set; }
Property Value
Type Description
string

Document unique identifier defined by the user.

Remarks

Required

LanguageCode

Declaration
[Required(ErrorMessage = "LanguageCode is required.")]
[JsonProperty(PropertyName = "languageCode")]
public string LanguageCode { get; set; }
Property Value
Type Description
string

Language code of the document. Please refer to respective model API documentation for supported languages.

Remarks

Required

Relations

Declaration
[JsonProperty(PropertyName = "relations")]
public List<RelationEntity> Relations { get; set; }
Property Value
Type Description
List<RelationEntity>

List of succeeded document response.

ResolvedEntities

Declaration
[Required(ErrorMessage = "ResolvedEntities is required.")]
[JsonProperty(PropertyName = "resolvedEntities")]
public Dictionary<string, ResolvedEntities> ResolvedEntities { get; set; }
Property Value
Type Description
Dictionary<string, ResolvedEntities>

Map of resolved entities by entity type

Remarks

Required

In this article
Back to top