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

com.mangopay.entities.subentities.BankAccountDetailsOTHER 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.enumerations.CountryIso;
import com.mangopay.core.interfaces.BankAccountDetails;

/**
 * Class represents OTHER type of bank account.
 */
public class BankAccountDetailsOTHER extends Dto implements BankAccountDetails {
    
    /**
     * Type.
     */
    //public String Type;
    
    /**
     * The Country associated to the BankAccount.
     */
    @SerializedName("Country")
    private CountryIso country;
    
    /**
     * Valid BIC format.
     */
    @SerializedName("BIC")
    private String bic;
    
    /**
     * Account number.
     */
    @SerializedName("AccountNumber")
    private String accountNumber;

    public CountryIso getCountry() {
        return country;
    }

    public void setCountry(CountryIso country) {
        this.country = country;
    }

    public String getBic() {
        return bic;
    }

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

    public String getAccountNumber() {
        return accountNumber;
    }

    public void setAccountNumber(String accountNumber) {
        this.accountNumber = accountNumber;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy