Show / Hide Table of Contents

Class BatchDetectLanguageEntitiesResult

Result of entities detect call.

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

Properties

Documents

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

List of succeeded document response.

Remarks

Required

Errors

Declaration
[JsonProperty(PropertyName = "errors")]
public List<DocumentError> Errors { get; set; }
Property Value
Type Description
List<DocumentError>

List of failed document response.

In this article
Back to top