com.banxa.model.PaymentMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
The Java SDK for integration with Banxa's API
The newest version!
package com.banxa.model;
import java.util.List;
public class PaymentMethod {
private Integer id;
private String name;
private String description;
private String logoUrl;
private String status;
private String type;
private List supportedAgents;
private List supportedFiat;
private List supportedCoin;
private List transactionFees;
private List transactionLimits;
public Integer getId() {
return id;
}
public String getName() {
return name;
}
public String getDescription() {
return description;
}
public String getLogoUrl() {
return logoUrl;
}
public String getStatus() {
return status;
}
public String getType() {
return type;
}
public List getSupportedAgents() {
return supportedAgents;
}
public List getSupportedFiat() {
return supportedFiat;
}
public List getSupportedCoin() {
return supportedCoin;
}
public List getTransactionFees() {
return transactionFees;
}
public List getTransactionLimits() {
return transactionLimits;
}
}