com.withabound.models.users.UserBusiness 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.users;
import java.util.Optional;
import lombok.Builder;
import lombok.Setter;
@Setter
@Builder
public class UserBusiness {
private String ein;
private String name;
private String dbaName;
private TaxClassification taxClassification;
private String address;
private String address2;
private String city;
private String state;
private String zipcode;
private String country;
public String getEin() {
return ein;
}
public String getName() {
return name;
}
public Optional getDbaName() {
return Optional.ofNullable(dbaName);
}
public Optional getTaxClassification() {
return Optional.ofNullable(taxClassification);
}
public Optional getAddress() {
return Optional.ofNullable(address);
}
public Optional getAddress2() {
return Optional.ofNullable(address2);
}
public Optional getCity() {
return Optional.ofNullable(city);
}
public Optional getState() {
return Optional.ofNullable(state);
}
public Optional getZipcode() {
return Optional.ofNullable(zipcode);
}
public Optional getCountry() {
return Optional.ofNullable(country);
}
}