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

com.yoti.api.client.AttributeDefinition Maven / Gradle / Ivy

The newest version!
package com.yoti.api.client;

import com.fasterxml.jackson.annotation.JsonProperty;

public class AttributeDefinition {

    @JsonProperty("name")
    private final String name;

    public AttributeDefinition(String name) {
        this.name = name;
    }

    /**
     * Returns the name of the definition.
     *
     * @return the name, or null if no name exists
     */
    public String getName() {
        return name;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy