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