@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
42 lines • 1.35 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.IbanAccountIdentification = void 0;
class IbanAccountIdentification {
static getAttributeTypeMap() {
return IbanAccountIdentification.attributeTypeMap;
}
constructor() {
}
}
exports.IbanAccountIdentification = IbanAccountIdentification;
IbanAccountIdentification.discriminator = undefined;
IbanAccountIdentification.mapping = undefined;
IbanAccountIdentification.attributeTypeMap = [
{
"name": "iban",
"baseName": "iban",
"type": "string",
"format": ""
},
{
"name": "type",
"baseName": "type",
"type": "IbanAccountIdentification.TypeEnum",
"format": ""
}
];
(function (IbanAccountIdentification) {
let TypeEnum;
(function (TypeEnum) {
TypeEnum["Iban"] = "iban";
})(TypeEnum = IbanAccountIdentification.TypeEnum || (IbanAccountIdentification.TypeEnum = {}));
})(IbanAccountIdentification = exports.IbanAccountIdentification || (exports.IbanAccountIdentification = {}));
//# sourceMappingURL=ibanAccountIdentification.js.map