amberflo-metering-typescript
Version:
Amberflo metering client for TypeScript
20 lines • 912 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PaymentStatus = exports.BillingPeriodInterval = void 0;
var BillingPeriodInterval;
(function (BillingPeriodInterval) {
BillingPeriodInterval["day"] = "day";
BillingPeriodInterval["month"] = "month";
BillingPeriodInterval["year"] = "year";
})(BillingPeriodInterval = exports.BillingPeriodInterval || (exports.BillingPeriodInterval = {}));
var PaymentStatus;
(function (PaymentStatus) {
PaymentStatus["prePayment"] = "pre_payment";
PaymentStatus["requiresAction"] = "requires_action";
PaymentStatus["pending"] = "pending";
PaymentStatus["failed"] = "failed";
PaymentStatus["settled"] = "settled";
PaymentStatus["notNeeded"] = "not_needed";
PaymentStatus["unknown"] = "unknown";
})(PaymentStatus = exports.PaymentStatus || (exports.PaymentStatus = {}));
//# sourceMappingURL=payments.js.map