Show / Hide Table of Contents

Class DetectLanguageKeyPhrasesResult

Result of a language keyPhrases detect call.

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

Properties

KeyPhrases

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

List of detected keyPhrases.

Remarks

Required

In this article
Back to top