notbank
Version:
The Notbank for Node.js
7 lines (6 loc) • 308 B
JavaScript
// Enum para los valores posibles de FeeProductType
export var FeeProductType;
(function (FeeProductType) {
FeeProductType["BASE_PRODUCT"] = "BaseProduct";
FeeProductType["SINGLE_PRODUCT"] = "SingleProduct"; // Tarifas cobradas en un producto específico
})(FeeProductType || (FeeProductType = {}));