Show / Hide Table of Contents

Class MetaInfo

MetaInfo of entity detected.

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

Properties

Length

Declaration
[JsonProperty(PropertyName = "length")]
public int? Length { get; set; }
Property Value
Type Description
int?

Length of entity text.

Offset

Declaration
[JsonProperty(PropertyName = "offset")]
public int? Offset { get; set; }
Property Value
Type Description
int?

The number of Unicode code points preceding this entity in the submitted text.

Score

Declaration
[JsonProperty(PropertyName = "score")]
public double Score { get; set; }
Property Value
Type Description
double

Score or confidence for detected entity.

SubType

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

Sub-type of entity text like GPE for LOCATION type.

Text

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

Entity text like name of person, location, and so on.

In this article
Back to top