scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
25 lines (24 loc) • 741 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.InvoicePixEntity = void 0;
var InvoicePixEntity = /** @class */ (function () {
// #endregion Properties (5)
// #region Constructors (1)
function InvoicePixEntity(data) {
// #region Properties (5)
this.expiresAt = new Date();
this.qrCode = '';
this.qrCodeImage = '';
this.qrCodeText = '';
this.status = '';
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return InvoicePixEntity;
}());
exports.InvoicePixEntity = InvoicePixEntity;