akua-sdk
Version:
TypeScript SDK for Akua Acquiring Processor
15 lines (14 loc) • 490 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PaymentIntent = void 0;
/**
* Enumeration of payment intents.
* @enum {string}
*/
var PaymentIntent;
(function (PaymentIntent) {
/** Payment intent is authorization */
PaymentIntent["AUTHORIZATION"] = "authorization";
/** Payment intent is pre-authorization */
PaymentIntent["PRE_AUTHORIZATION"] = "pre-authorization";
})(PaymentIntent || (exports.PaymentIntent = PaymentIntent = {}));