@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
57 lines • 1.76 kB
JavaScript
;
/*
* The version of the OpenAPI document: v68
*
*
* 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.Installments = void 0;
class Installments {
static getAttributeTypeMap() {
return Installments.attributeTypeMap;
}
constructor() {
}
}
exports.Installments = Installments;
Installments.discriminator = undefined;
Installments.mapping = undefined;
Installments.attributeTypeMap = [
{
"name": "extra",
"baseName": "extra",
"type": "number",
"format": "int32"
},
{
"name": "plan",
"baseName": "plan",
"type": "Installments.PlanEnum",
"format": ""
},
{
"name": "value",
"baseName": "value",
"type": "number",
"format": "int32"
}
];
(function (Installments) {
let PlanEnum;
(function (PlanEnum) {
PlanEnum["Bonus"] = "bonus";
PlanEnum["BuynowPaylater"] = "buynow_paylater";
PlanEnum["InteresRefundPrctg"] = "interes_refund_prctg";
PlanEnum["InterestBonus"] = "interest_bonus";
PlanEnum["NointeresRefundPrctg"] = "nointeres_refund_prctg";
PlanEnum["NointerestBonus"] = "nointerest_bonus";
PlanEnum["RefundPrctg"] = "refund_prctg";
PlanEnum["Regular"] = "regular";
PlanEnum["Revolving"] = "revolving";
PlanEnum["WithInterest"] = "with_interest";
})(PlanEnum = Installments.PlanEnum || (Installments.PlanEnum = {}));
})(Installments = exports.Installments || (exports.Installments = {}));
//# sourceMappingURL=installments.js.map