@lomray/microservice-payment-stripe
Version:
Stripe payment microservice based on NodeJS & inverted json.
15 lines (12 loc) • 415 B
JavaScript
;
/**
* Enum for storing stripe type of connected accounts
*/
var StripeAccountTypes;
(function (StripeAccountTypes) {
StripeAccountTypes["STANDARD"] = "standard";
StripeAccountTypes["EXPRESS"] = "express";
StripeAccountTypes["CUSTOM"] = "custom";
})(StripeAccountTypes || (StripeAccountTypes = {}));
var StripeAccountTypes$1 = StripeAccountTypes;
module.exports = StripeAccountTypes$1;