securepay
Version:
https://www.securepay.com.au/
23 lines (22 loc) • 874 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.PaymentChanel = void 0;
var PaymentChanel;
(function (PaymentChanel) {
/**
* InBrowser is used if customer is initiating the transaction from browser
*/
PaymentChanel["IN_BROWSER"] = "InBrowser";
/**
* InApp is used if transaction is initiated from within Alipay mobile app
*/
PaymentChanel["IN_APP"] = "InApp";
/**
* InstoreMerchantQRCode is used if transaction is initiated from merchant terminal
*/
PaymentChanel["INSTORE_CUSTOMER_QR_CODE"] = "InstoreCustomerQRCode";
/**
* InstoreCustomerQRCode is used if transaction is initiated using customer's Alipay app QRCode
*/
PaymentChanel["INSTORE_MERCHANT_QR_CODE"] = "InstoreMerchantQRCode";
})(PaymentChanel = exports.PaymentChanel || (exports.PaymentChanel = {}));
;