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

com.microsoft.azure.cognitiveservices.faceapi.implementation.CreatePersonResultInner Maven / Gradle / Ivy

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