@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
118 lines • 3.46 kB
JavaScript
;
/*
* The version of the OpenAPI document: v71
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit this class manually.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.AchDetails = void 0;
class AchDetails {
static getAttributeTypeMap() {
return AchDetails.attributeTypeMap;
}
constructor() {
}
}
exports.AchDetails = AchDetails;
AchDetails.discriminator = undefined;
AchDetails.mapping = undefined;
AchDetails.attributeTypeMap = [
{
"name": "accountHolderType",
"baseName": "accountHolderType",
"type": "AchDetails.AccountHolderTypeEnum",
"format": ""
},
{
"name": "bankAccountNumber",
"baseName": "bankAccountNumber",
"type": "string",
"format": ""
},
{
"name": "bankAccountType",
"baseName": "bankAccountType",
"type": "AchDetails.BankAccountTypeEnum",
"format": ""
},
{
"name": "bankLocationId",
"baseName": "bankLocationId",
"type": "string",
"format": ""
},
{
"name": "checkoutAttemptId",
"baseName": "checkoutAttemptId",
"type": "string",
"format": ""
},
{
"name": "encryptedBankAccountNumber",
"baseName": "encryptedBankAccountNumber",
"type": "string",
"format": ""
},
{
"name": "encryptedBankLocationId",
"baseName": "encryptedBankLocationId",
"type": "string",
"format": ""
},
{
"name": "ownerName",
"baseName": "ownerName",
"type": "string",
"format": ""
},
{
"name": "recurringDetailReference",
"baseName": "recurringDetailReference",
"type": "string",
"format": ""
},
{
"name": "storedPaymentMethodId",
"baseName": "storedPaymentMethodId",
"type": "string",
"format": ""
},
{
"name": "transferInstrumentId",
"baseName": "transferInstrumentId",
"type": "string",
"format": ""
},
{
"name": "type",
"baseName": "type",
"type": "AchDetails.TypeEnum",
"format": ""
}
];
(function (AchDetails) {
let AccountHolderTypeEnum;
(function (AccountHolderTypeEnum) {
AccountHolderTypeEnum["Business"] = "business";
AccountHolderTypeEnum["Personal"] = "personal";
})(AccountHolderTypeEnum = AchDetails.AccountHolderTypeEnum || (AchDetails.AccountHolderTypeEnum = {}));
let BankAccountTypeEnum;
(function (BankAccountTypeEnum) {
BankAccountTypeEnum["Balance"] = "balance";
BankAccountTypeEnum["Checking"] = "checking";
BankAccountTypeEnum["Deposit"] = "deposit";
BankAccountTypeEnum["General"] = "general";
BankAccountTypeEnum["Other"] = "other";
BankAccountTypeEnum["Payment"] = "payment";
BankAccountTypeEnum["Savings"] = "savings";
})(BankAccountTypeEnum = AchDetails.BankAccountTypeEnum || (AchDetails.BankAccountTypeEnum = {}));
let TypeEnum;
(function (TypeEnum) {
TypeEnum["Ach"] = "ach";
TypeEnum["AchPlaid"] = "ach_plaid";
})(TypeEnum = AchDetails.TypeEnum || (AchDetails.TypeEnum = {}));
})(AchDetails = exports.AchDetails || (exports.AchDetails = {}));
//# sourceMappingURL=achDetails.js.map