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

com.withabound.models.payers.Payer 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.payers;

/** See https://docs.withabound.com/reference/payers */
public class Payer extends PayerRequest {
  private String payerId;

  public Payer(
      final String name,
      final String address,
      final String address2,
      final String city,
      final String state,
      final String country,
      final String zipcode,
      final String phoneNumber,
      final String taxIdNumber,
      final String foreignId) {
    super(
        name,
        address,
        address2,
        city,
        state,
        country,
        zipcode,
        phoneNumber,
        taxIdNumber,
        foreignId);
  }

  public String getPayerId() {
    return payerId;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy