@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
54 lines • 1.47 kB
JavaScript
;
/*
* The version of the OpenAPI document: v3
*
*
* 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.SourceOfFunds = void 0;
class SourceOfFunds {
static getAttributeTypeMap() {
return SourceOfFunds.attributeTypeMap;
}
constructor() {
}
}
exports.SourceOfFunds = SourceOfFunds;
SourceOfFunds.discriminator = undefined;
SourceOfFunds.mapping = undefined;
SourceOfFunds.attributeTypeMap = [
{
"name": "acquiringBusinessLineId",
"baseName": "acquiringBusinessLineId",
"type": "string",
"format": ""
},
{
"name": "adyenProcessedFunds",
"baseName": "adyenProcessedFunds",
"type": "boolean",
"format": ""
},
{
"name": "description",
"baseName": "description",
"type": "string",
"format": ""
},
{
"name": "type",
"baseName": "type",
"type": "SourceOfFunds.TypeEnum",
"format": ""
}
];
(function (SourceOfFunds) {
let TypeEnum;
(function (TypeEnum) {
TypeEnum["Business"] = "business";
})(TypeEnum = SourceOfFunds.TypeEnum || (SourceOfFunds.TypeEnum = {}));
})(SourceOfFunds = exports.SourceOfFunds || (exports.SourceOfFunds = {}));
//# sourceMappingURL=sourceOfFunds.js.map