com.yoti.api.client.AttributeDefinition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yoti-sdk-api Show documentation
Show all versions of yoti-sdk-api Show documentation
Java SDK for simple integration with the Yoti platform
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