![JAR search and dependency download from the Maven repository](/logo.png)
com.banxa.model.request.IdentityDocumentImage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
The Java SDK for integration with Banxa's API
The newest version!
package com.banxa.model.request;
public class IdentityDocumentImage {
private final String link;
private IdentityDocumentImage(Builder builder) {
this.link = builder.link;
}
public IdentityDocumentImage(String link) {
this.link = link;
}
public String getLink() {
return link;
}
public static class Builder {
private final String link;
public Builder(String link) {
this.link = link;
}
public IdentityDocumentImage build() {
return new IdentityDocumentImage(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy