All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.withabound.models.documents.Form1099Payer Maven / Gradle / Ivy

Go to download

The Abound Java SDK provides convenient access to the Abound API from applications written in Java.

The newest version!
package com.withabound.models.documents;

import java.util.Optional;

public class Form1099Payer {
  private String name;
  private String address;
  private String address2;
  private String city;
  private String state;
  private String zipcode;
  private String country;
  private String phoneNumber;

  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;
  }

  public String getCountry() {
    return country;
  }

  public String getPhoneNumber() {
    return phoneNumber;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy