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

com.banxa.model.PaymentMethod Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy