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

com.global.api.entities.payFac.BankAccountData Maven / Gradle / Ivy

There is a newer version: 14.2.3
Show newest version
package com.global.api.entities.payFac;

import com.global.api.entities.Address;
import lombok.Getter;
import lombok.Setter;
import lombok.experimental.Accessors;

@Accessors(chain = true)
@Getter
@Setter
public class BankAccountData {
    // ISO 3166 standard 3-character country code
    private String accountCountryCode;
    // Merchant/Individual Name
    private String accountName;
    // Financial Institution account number
    private String accountNumber;
    // Valid values are: Personal and Business
    private String accountOwnershipType;
    // Valid Values are:
    // C - Checking
    // S - Savings
    // G - General Ledger
    private String accountType;
    // Name of financial institution
    private String bankName;
    // Financial institution routing number. Must be a valid ACH routing number
    private String routingNumber;
    // The account holder's name. This is required if payment method is a bank account
    private String accountHolderName;
    // Financial institution address
    private Address bankAddress;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy