@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
86 lines • 2.23 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.BusinessLine = void 0;
class BusinessLine {
static getAttributeTypeMap() {
return BusinessLine.attributeTypeMap;
}
constructor() {
}
}
exports.BusinessLine = BusinessLine;
BusinessLine.discriminator = undefined;
BusinessLine.mapping = undefined;
BusinessLine.attributeTypeMap = [
{
"name": "id",
"baseName": "id",
"type": "string",
"format": ""
},
{
"name": "industryCode",
"baseName": "industryCode",
"type": "string",
"format": ""
},
{
"name": "legalEntityId",
"baseName": "legalEntityId",
"type": "string",
"format": ""
},
{
"name": "problems",
"baseName": "problems",
"type": "Array<CapabilityProblem>",
"format": ""
},
{
"name": "salesChannels",
"baseName": "salesChannels",
"type": "Array<string>",
"format": ""
},
{
"name": "service",
"baseName": "service",
"type": "BusinessLine.ServiceEnum",
"format": ""
},
{
"name": "sourceOfFunds",
"baseName": "sourceOfFunds",
"type": "SourceOfFunds | null",
"format": ""
},
{
"name": "webData",
"baseName": "webData",
"type": "Array<WebData>",
"format": ""
},
{
"name": "webDataExemption",
"baseName": "webDataExemption",
"type": "WebDataExemption | null",
"format": ""
}
];
(function (BusinessLine) {
let ServiceEnum;
(function (ServiceEnum) {
ServiceEnum["PaymentProcessing"] = "paymentProcessing";
ServiceEnum["Issuing"] = "issuing";
ServiceEnum["Banking"] = "banking";
})(ServiceEnum = BusinessLine.ServiceEnum || (BusinessLine.ServiceEnum = {}));
})(BusinessLine = exports.BusinessLine || (exports.BusinessLine = {}));
//# sourceMappingURL=businessLine.js.map