
com.microsoft.azure.cognitiveservices.vision.faceapi.models.CreatePersonGroupPersonsOptionalParameter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-cognitiveservices-faceapi Show documentation
Show all versions of azure-cognitiveservices-faceapi Show documentation
This package contains Microsoft Cognitive Service Face API 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.vision.faceapi.models;
/**
* The CreatePersonGroupPersonsOptionalParameter model.
*/
public class CreatePersonGroupPersonsOptionalParameter {
/**
* User defined name, maximum length is 128.
*/
private String name;
/**
* User specified data. Length should not exceed 16KB.
*/
private String userData;
/**
* Gets or sets the preferred language for the response.
*/
private String thisclientacceptLanguage;
/**
* Get the name value.
*
* @return the name value
*/
public String name() {
return this.name;
}
/**
* Set the name value.
*
* @param name the name value to set
* @return the CreatePersonGroupPersonsOptionalParameter object itself.
*/
public CreatePersonGroupPersonsOptionalParameter withName(String name) {
this.name = name;
return this;
}
/**
* Get the userData value.
*
* @return the userData value
*/
public String userData() {
return this.userData;
}
/**
* Set the userData value.
*
* @param userData the userData value to set
* @return the CreatePersonGroupPersonsOptionalParameter object itself.
*/
public CreatePersonGroupPersonsOptionalParameter withUserData(String userData) {
this.userData = userData;
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 CreatePersonGroupPersonsOptionalParameter object itself.
*/
public CreatePersonGroupPersonsOptionalParameter withThisclientacceptLanguage(String thisclientacceptLanguage) {
this.thisclientacceptLanguage = thisclientacceptLanguage;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy