com.withabound.models.documents.w9.FormW9User 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 FormW9User {
private String name;
private String businessName;
private String address;
private String address2;
private String city;
private String state;
private String zipcode;
private String country;
public String getName() {
return name;
}
public Optional getBusinessName() {
return Optional.ofNullable(businessName);
}
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;
}
public Optional getCountry() {
return Optional.ofNullable(country);
}
}