@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
59 lines • 1.64 kB
JavaScript
;
/*
* The version of the OpenAPI document: v72
*
*
* 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.AlmaDetails = void 0;
class AlmaDetails {
static getAttributeTypeMap() {
return AlmaDetails.attributeTypeMap;
}
constructor() {
}
}
exports.AlmaDetails = AlmaDetails;
AlmaDetails.discriminator = undefined;
AlmaDetails.mapping = undefined;
AlmaDetails.attributeTypeMap = [
{
"name": "checkoutAttemptId",
"baseName": "checkoutAttemptId",
"type": "string",
"format": ""
},
{
"name": "feeType",
"baseName": "feeType",
"type": "AlmaDetails.FeeTypeEnum",
"format": ""
},
{
"name": "sdkData",
"baseName": "sdkData",
"type": "string",
"format": ""
},
{
"name": "type",
"baseName": "type",
"type": "AlmaDetails.TypeEnum",
"format": ""
}
];
(function (AlmaDetails) {
let FeeTypeEnum;
(function (FeeTypeEnum) {
FeeTypeEnum["MerchantPays"] = "merchantPays";
FeeTypeEnum["ShopperPays"] = "shopperPays";
})(FeeTypeEnum = AlmaDetails.FeeTypeEnum || (AlmaDetails.FeeTypeEnum = {}));
let TypeEnum;
(function (TypeEnum) {
TypeEnum["Alma"] = "alma";
})(TypeEnum = AlmaDetails.TypeEnum || (AlmaDetails.TypeEnum = {}));
})(AlmaDetails = exports.AlmaDetails || (exports.AlmaDetails = {}));
//# sourceMappingURL=almaDetails.js.map