All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.azure.cognitiveservices.language.textanalytics.models.EntitiesOptionalParameter Maven / Gradle / Ivy

There is a newer version: 1.0.2-beta
Show newest version
/**
 * 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;

/**
 * The EntitiesOptionalParameter model.
 */
public class EntitiesOptionalParameter {
    /**
     * The documents property.
     */
    private List documents;

    /**
     * Gets or sets the preferred language for the response.
     */
    private String thisclientacceptLanguage;

    /**
     * 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 EntitiesOptionalParameter object itself.
     */
    public EntitiesOptionalParameter withDocuments(List documents) {
        this.documents = documents;
        return this;
    }

    /**
     * Get the thisclientacceptLanguage value.
     *
     * @return the thisclientacceptLanguage value
     */
    public String thisclientacceptLanguage() {
        return this.thisclientacceptLanguage;
    }

    /**
     * Set the thisclientacceptLanguage value.
     *
     * @param thisclientacceptLanguage the thisclientacceptLanguage value to set
     * @return the EntitiesOptionalParameter object itself.
     */
    public EntitiesOptionalParameter withThisclientacceptLanguage(String thisclientacceptLanguage) {
        this.thisclientacceptLanguage = thisclientacceptLanguage;
        return this;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy