
com.microsoft.azure.cognitiveservices.faceapi.implementation.CreatePersonResultInner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-faceapi Show documentation
Show all versions of azure-faceapi Show documentation
This package contains Microsoft Cognitive Service Face API SDK.
The newest version!
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*/
package com.microsoft.azure.cognitiveservices.faceapi.implementation;
import java.util.UUID;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Result of creating person.
*/
public class CreatePersonResultInner {
/**
* personID of the new created person.
*/
@JsonProperty(value = "personId", required = true)
private UUID personId;
/**
* Get the personId value.
*
* @return the personId value
*/
public UUID personId() {
return this.personId;
}
/**
* Set the personId value.
*
* @param personId the personId value to set
* @return the CreatePersonResultInner object itself.
*/
public CreatePersonResultInner withPersonId(UUID personId) {
this.personId = personId;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy