Show / Hide Table of Contents

Class DetectedLanguage

The language detected in a document.

Inheritance
object
DetectedLanguage
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.AidocumentService.Models
Assembly: OCI.DotNetSDK.Aidocument.dll
Syntax
public class DetectedLanguage

Properties

Confidence

Declaration
[Required(ErrorMessage = "Confidence is required.")]
[JsonProperty(PropertyName = "confidence")]
public float? Confidence { get; set; }
Property Value
Type Description
float?

The confidence score between 0 and 1.

Remarks

Required

Language

Declaration
[Required(ErrorMessage = "Language is required.")]
[JsonProperty(PropertyName = "language")]
public string Language { get; set; }
Property Value
Type Description
string

The document language, abbreviated according to the BCP 47 syntax.

Remarks

Required

In this article
Back to top