Show / Hide Table of Contents

Class DetectLanguageEntitiesResult

Result of entities detect call.

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

Properties

Entities

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

List of detected entities.

Remarks

Required

In this article
Back to top