Show / Hide Table of Contents

Class EntityDocumentResult

The document response for entities detect call.

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

Properties

Entities

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

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 supported

  • auto : Automatically detect language
  • ar : Arabic
  • pt-BR : Brazilian Portuguese
  • cs : Czech
  • da : Danish
  • nl : Dutch
  • en : English
  • fi : Finnish
  • fr : French
  • fr-CA : Canadian French
  • de : German
  • it : Italian
  • ja : Japanese
  • ko : Korean
  • no : Norwegian
  • pl : Polish
  • ro : Romanian
  • zh-CN : Simplified Chinese
  • es : Spanish
  • sv : Swedish
  • zh-TW : Traditional Chinese
  • tr : Turkish
  • el : Greek
  • he : Hebrew
Remarks

Required

In this article
Back to top