@shipengine/connect-fulfillment-provider-api
Version:
OpenAPI specification and TypeScript definitions for the Connect Fulfillment Provider API
14 lines • 640 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PaymentStatus = void 0;
/** @description The status of whether or not an order has been paid for */
var PaymentStatus;
(function (PaymentStatus) {
PaymentStatus["AwaitingPayment"] = "AwaitingPayment";
PaymentStatus["PaymentCancelled"] = "PaymentCancelled";
PaymentStatus["PaymentFailed"] = "PaymentFailed";
PaymentStatus["PaymentInProcess"] = "PaymentInProcess";
PaymentStatus["Paid"] = "Paid";
PaymentStatus["Other"] = "Other";
})(PaymentStatus || (exports.PaymentStatus = PaymentStatus = {}));
//# sourceMappingURL=payment.js.map