@calf/dotypay
Version:
Dotypay module of Calf framework.
29 lines (28 loc) • 885 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Payment = void 0;
/**
* Payment
* @description Namespace for Payment
*/
var Payment;
(function (Payment) {
/**
* Enums
* @description Namespace for Enums
*/
var Enums;
(function (Enums) {
/**
* Payment type
* @description Enum for Payment type
*/
var PaymentType;
(function (PaymentType) {
PaymentType["Normal"] = "Normal";
PaymentType["Refund"] = "Refund";
PaymentType["OneTimeReservation"] = "OneTimeReservation";
PaymentType["Completion"] = "Completion";
})(PaymentType = Enums.PaymentType || (Enums.PaymentType = {}));
})(Enums = Payment.Enums || (Payment.Enums = {}));
})(Payment = exports.Payment || (exports.Payment = {}));