cecon-interfaces
Version:
Interfaces de Projetos Cecon
20 lines (19 loc) • 594 B
JavaScript
;
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;