com.withabound.models.documents.w9.FormW9Payer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of withabound-java Show documentation
Show all versions of withabound-java Show documentation
The Abound Java SDK provides convenient access to the Abound API from applications written in Java.
The newest version!
package com.withabound.models.documents.w9;
import java.util.Optional;
public class FormW9Payer {
private String name;
private String address;
private String address2;
private String city;
private String state;
private String zipcode;
public String getName() {
return name;
}
public String getAddress() {
return address;
}
public Optional getAddress2() {
return Optional.ofNullable(address2);
}
public String getCity() {
return city;
}
public String getState() {
return state;
}
public String getZipcode() {
return zipcode;
}
}