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

com.mercadopago.resources.datastructures.payment.BankInfoCollector Maven / Gradle / Ivy

package com.mercadopago.resources.datastructures.payment;

/**
 * Bank info collector
 */
public class BankInfoCollector {
    private Long accountId;
    private String longName;

    /**
     * @return account ID
     */
    public Long getAccountId() {
        return accountId;
    }

    /**
     * @param accountId account ID
     * @return collector info
     */
    public BankInfoCollector setAccountId(Long accountId) {
        this.accountId = accountId;
        return this;
    }

    /**
     * @return long name
     */
    public String getLongName() {
        return longName;
    }

    /**
     * @param longName long name
     * @return collector info
     */
    public BankInfoCollector setLongName(String longName) {
        this.longName = longName;
        return this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy