UNPKG

@adyen/api-library

Version:

The Adyen API Library for NodeJS enables you to work with Adyen APIs.

51 lines 1.67 kB
"use strict"; /* * The version of the OpenAPI document: v2 * * * 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.BankIdentification = void 0; class BankIdentification { static getAttributeTypeMap() { return BankIdentification.attributeTypeMap; } constructor() { } } exports.BankIdentification = BankIdentification; BankIdentification.discriminator = undefined; BankIdentification.mapping = undefined; BankIdentification.attributeTypeMap = [ { "name": "country", "baseName": "country", "type": "string", "format": "" }, { "name": "identification", "baseName": "identification", "type": "string", "format": "" }, { "name": "identificationType", "baseName": "identificationType", "type": "BankIdentification.IdentificationTypeEnum", "format": "" } ]; (function (BankIdentification) { let IdentificationTypeEnum; (function (IdentificationTypeEnum) { IdentificationTypeEnum["Bic"] = "bic"; IdentificationTypeEnum["Iban"] = "iban"; IdentificationTypeEnum["RoutingNumber"] = "routingNumber"; IdentificationTypeEnum["SortCode"] = "sortCode"; })(IdentificationTypeEnum = BankIdentification.IdentificationTypeEnum || (BankIdentification.IdentificationTypeEnum = {})); })(BankIdentification = exports.BankIdentification || (exports.BankIdentification = {})); //# sourceMappingURL=bankIdentification.js.map