UNPKG

cecon-interfaces

Version:
20 lines (19 loc) 594 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.IPaymentMethod = void 0; var IPaymentMethod = /** @class */ (function () { // #endregion Properties (8) // #region Constructors (1) function IPaymentMethod(obj) { this.active = true; this.createdAt = Date.now(); this.id = obj.id; this.index = obj.index; this.method = obj.method; this.name = obj.name; this.type = obj.type; this.updatedAt = Date.now(); } return IPaymentMethod; }()); exports.IPaymentMethod = IPaymentMethod;