com.microsoft.azure.cognitiveservices.vision.faceapi.models.UpdatePersonOptionalParameter 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 optional parameters class for "updatePerson" method.
*/
public class UpdatePersonOptionalParameter {
/**
* User defined name, maximum length is 128.
*/
private String name;
/**
* User specified data. Length should not exceed 16KB.
*/
private String userData;
/**
* Get the name value.
*
* @return the name value
*/
public String name() {
return this.name;
}
/**
* Get the userData value.
*
* @return the userData value
*/
public String userData() {
return this.userData;
}
/**
* Set the name value.
*
* User defined name, maximum length is 128.
*
* @param name the name value to set
* @return the updatePersonOptionalParameter object itself.
*/
public UpdatePersonOptionalParameter withName(String name) {
this.name = name;
return this;
}
/**
* Set the userData value.
*
* User specified data. Length should not exceed 16KB.
*
* @param userData the userData value to set
* @return the updatePersonOptionalParameter object itself.
*/
public UpdatePersonOptionalParameter withUserData(String userData) {
this.userData = userData;
return this;
}
}