Show / Hide Table of Contents

Class BatchDetectDominantLanguageResult

Result of language detect call.

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

Properties

Documents

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

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