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

com.mangopay.entities.subentities.BankAccountDetailsIBAN Maven / Gradle / Ivy

There is a newer version: 2.42.0
Show newest version
package com.mangopay.entities.subentities;

import com.google.gson.annotations.SerializedName;
import com.mangopay.core.Dto;
import com.mangopay.core.interfaces.BankAccountDetails;

/**
 * Class represents IBAN type of bank account.
 */
public class BankAccountDetailsIBAN extends Dto implements BankAccountDetails {

    /**
     * IBAN number.
     */
    @SerializedName("IBAN")
    private String iban;

    /**
     * BIC.
     */
    @SerializedName("BIC")
    private String bic;

    public String getIban() {
        return iban;
    }

    public void setIban(String iban) {
        this.iban = iban;
    }

    public String getBic() {
        return bic;
    }

    public void setBic(String bic) {
        this.bic = bic;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy