@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
49 lines • 1.53 kB
JavaScript
;
/*
* The version of the OpenAPI document: v4
*
*
* 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.TransferInstrumentInfo = void 0;
class TransferInstrumentInfo {
static getAttributeTypeMap() {
return TransferInstrumentInfo.attributeTypeMap;
}
constructor() {
}
}
exports.TransferInstrumentInfo = TransferInstrumentInfo;
TransferInstrumentInfo.discriminator = undefined;
TransferInstrumentInfo.mapping = undefined;
TransferInstrumentInfo.attributeTypeMap = [
{
"name": "bankAccount",
"baseName": "bankAccount",
"type": "BankAccountInfo",
"format": ""
},
{
"name": "legalEntityId",
"baseName": "legalEntityId",
"type": "string",
"format": ""
},
{
"name": "type",
"baseName": "type",
"type": "TransferInstrumentInfo.TypeEnum",
"format": ""
}
];
(function (TransferInstrumentInfo) {
let TypeEnum;
(function (TypeEnum) {
TypeEnum["BankAccount"] = "bankAccount";
TypeEnum["RecurringDetail"] = "recurringDetail";
})(TypeEnum = TransferInstrumentInfo.TypeEnum || (TransferInstrumentInfo.TypeEnum = {}));
})(TransferInstrumentInfo = exports.TransferInstrumentInfo || (exports.TransferInstrumentInfo = {}));
//# sourceMappingURL=transferInstrumentInfo.js.map