Show / Hide Table of Contents

Class DetectLanguageTextClassificationResult

Result of text classification detect call.

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

Properties

TextClassification

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

List of detected text classes.

Remarks

Required

In this article
Back to top