com.microsoft.azure.cognitiveservices.language.textanalytics.models.MultiLanguageBatchInput 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 MultiLanguageBatchInput model.
*/
public class MultiLanguageBatchInput {
/**
* The documents property.
*/
@JsonProperty(value = "documents")
private List documents;
/**
* Get the documents value.
*
* @return the documents value
*/
public List documents() {
return this.documents;
}
/**
* Set the documents value.
*
* @param documents the documents value to set
* @return the MultiLanguageBatchInput object itself.
*/
public MultiLanguageBatchInput withDocuments(List documents) {
this.documents = documents;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy