qpay-quick
Version:
104 lines • 2.45 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.AccountBankCode = exports.InvoiceStatus = exports.MerchantType = exports.QPayEnvironment = void 0;
var QPayEnvironment;
(function (QPayEnvironment) {
QPayEnvironment["Production"] = "PRODUCTION";
QPayEnvironment["Development"] = "DEVELOPMENT";
})(QPayEnvironment || (exports.QPayEnvironment = QPayEnvironment = {}));
var MerchantType;
(function (MerchantType) {
MerchantType["Company"] = "COMPANY";
MerchantType["Person"] = "PERSON";
})(MerchantType || (exports.MerchantType = MerchantType = {}));
var InvoiceStatus;
(function (InvoiceStatus) {
InvoiceStatus["Open"] = "OPEN";
InvoiceStatus["Paid"] = "PAID";
})(InvoiceStatus || (exports.InvoiceStatus = InvoiceStatus = {}));
/**
* Enum for bank
* @readonly
* @enum {string}
*/
var AccountBankCode;
(function (AccountBankCode) {
/**
* @member {string}
*/
/**
* Default value
*/
AccountBankCode["None"] = "";
/**
* @member {string}
*/
/**
* Мобифинанс
*/
AccountBankCode["Mobifinance"] = "990000";
/**
* @member {string}
*/
/**
* Капитал банк
*/
AccountBankCode["Capitalbank"] = "020000";
/**
* @member {string}
*/
/**
* Худалдаа хөгжлийн банк
*/
AccountBankCode["TDB"] = "040000";
/**
* @member {string}
*/
/**
* Хаан банк
*/
AccountBankCode["Khanbank"] = "050000";
/**
* @member {string}
*/
/**
* Голомт банк
*/
AccountBankCode["Golomtbank"] = "150000";
/**
* @member {string}
*/
/**
* Тээвэр хөгжлийн банк
*/
AccountBankCode["Transbank"] = "190000";
/**
* @member {string}
*/
/**
* Капитрон банк
*/
AccountBankCode["Capitronbank"] = "300000";
/**
* @member {string}
*/
/**
* Хас банк
*/
AccountBankCode["Xacbank"] = "320000";
/**
* @member {string}
*/
/**
* Төрийн банк
*/
AccountBankCode["Statebank"] = "340000";
/**
* @member {string}
*/
/**
* Төрийн сан
*/
AccountBankCode["Toriinsan"] = "900000";
})(AccountBankCode || (exports.AccountBankCode = AccountBankCode = {}));
//# sourceMappingURL=qpay-enumerations.js.map