com.microsoft.azure.cognitiveservices.language.textanalytics.models.KeyPhraseBatchResultItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-cognitiveservices-textanalytics Show documentation
Show all versions of azure-cognitiveservices-textanalytics Show documentation
This package contains Microsoft Cognitive Service Text Analytics SDK.
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.cognitiveservices.language.textanalytics.models;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* The KeyPhraseBatchResultItem model.
*/
public class KeyPhraseBatchResultItem {
/**
* A list of representative words or phrases. The number of key phrases
* returned is proportional to the number of words in the input document.
*/
@JsonProperty(value = "keyPhrases", access = JsonProperty.Access.WRITE_ONLY)
private List keyPhrases;
/**
* Unique document identifier.
*/
@JsonProperty(value = "id", access = JsonProperty.Access.WRITE_ONLY)
private String id;
/**
* Get the keyPhrases value.
*
* @return the keyPhrases value
*/
public List keyPhrases() {
return this.keyPhrases;
}
/**
* Get the id value.
*
* @return the id value
*/
public String id() {
return this.id;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy