com.yoti.api.client.docs.session.create.check.RequestedThirdPartyIdentityCheck 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.docs.session.create.check;
import com.yoti.api.client.docs.DocScanConstants;
public class RequestedThirdPartyIdentityCheck extends RequestedCheck {
private final RequestedThirdPartyIdentityConfig config;
RequestedThirdPartyIdentityCheck(RequestedThirdPartyIdentityConfig config) {
this.config = config;
}
public static RequestedThirdPartyIdentityCheck.Builder builder() {
return new RequestedThirdPartyIdentityCheck.Builder();
}
@Override
public String getType() {
return DocScanConstants.THIRD_PARTY_IDENTITY;
}
@Override
public RequestedThirdPartyIdentityConfig getConfig() {
return config;
}
public static class Builder {
private final RequestedThirdPartyIdentityConfig config;
Builder() {
config = new RequestedThirdPartyIdentityConfig();
}
public RequestedThirdPartyIdentityCheck build() {
return new RequestedThirdPartyIdentityCheck(config);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy