AnalysisInput.java
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.ai.textanalytics.implementation.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
/** The AnalysisInput model. */
@Fluent
public class AnalysisInput {
/*
* Contains a set of input documents to be analyzed by the service.
*/
@JsonProperty(value = "analysisInput", required = true)
private MultiLanguageBatchInput analysisInput;
/**
* Get the analysisInput property: Contains a set of input documents to be analyzed by the service.
*
* @return the analysisInput value.
*/
public MultiLanguageBatchInput getAnalysisInput() {
return this.analysisInput;
}
/**
* Set the analysisInput property: Contains a set of input documents to be analyzed by the service.
*
* @param analysisInput the analysisInput value to set.
* @return the AnalysisInput object itself.
*/
public AnalysisInput setAnalysisInput(MultiLanguageBatchInput analysisInput) {
this.analysisInput = analysisInput;
return this;
}
}