com.yoti.api.client.AttributeIssuanceDetails 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 java.util.List;
public class AttributeIssuanceDetails {
private final DateTime expiryDate;
private final String token;
private final List issuingAttributes;
public AttributeIssuanceDetails(String token, DateTime expiryDate, List issuingAttributes) {
if (token == null) {
this.token = "";
} else {
this.token = token;
}
this.expiryDate = expiryDate;
this.issuingAttributes = issuingAttributes;
}
public DateTime getExpiryDate() {
return expiryDate;
}
public String getToken() {
return token;
}
public List getIssuingAttributes() {
return issuingAttributes;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy