com.yoti.api.client.identity.extension.ThirdPartyAttributeContent 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.identity.extension;
import java.time.OffsetDateTime;
import java.util.List;
import com.yoti.api.client.AttributeDefinition;
import com.fasterxml.jackson.annotation.JsonProperty;
public class ThirdPartyAttributeContent {
private final OffsetDateTime expiry;
@JsonProperty(Property.DEFINITIONS)
private final List definitions;
ThirdPartyAttributeContent(OffsetDateTime expiry, List definitions) {
this.expiry = expiry;
this.definitions = definitions;
}
@JsonProperty(Property.EXPIRY_DATE)
public OffsetDateTime getExpiryDate() {
return expiry;
}
public List getDefinitions() {
return definitions;
}
private static final class Property {
private static final String DEFINITIONS = "definitions";
private static final String EXPIRY_DATE = "expiry_date";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy