Show / Hide Table of Contents

Class BatchDetectHealthEntityDetails

The documents details for health entities detect call.

Inheritance
object
BatchDetectHealthEntityDetails
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 BatchDetectHealthEntityDetails

Properties

Alias

Declaration
[JsonProperty(PropertyName = "alias")]
public string Alias { get; set; }
Property Value
Type Description
string

Unique name across user tenancy in a region to identify an endpoint to be used for inferencing.

Documents

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

List of Documents for detect health entities.

Remarks

Required

EndpointId

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

The endpoint which have to be used for inferencing.

Remarks

Required

IsDetectAssertions

Declaration
[JsonProperty(PropertyName = "isDetectAssertions")]
public bool? IsDetectAssertions { get; set; }
Property Value
Type Description
bool?

is assertion on input text required. default value true.

IsDetectRelationships

Declaration
[JsonProperty(PropertyName = "isDetectRelationships")]
public bool? IsDetectRelationships { get; set; }
Property Value
Type Description
bool?

is relationship on input text required. default value true.

LinkOntologies

Declaration
[JsonProperty(PropertyName = "linkOntologies")]
public List<string> LinkOntologies { get; set; }
Property Value
Type Description
List<string>

List of NLP health ontologies to be linked

Profile

Declaration
[JsonProperty(PropertyName = "profile")]
public Profile Profile { get; set; }
Property Value
Type Description
Profile
In this article
Back to top