cecon-interfaces
Version:
Interfaces de Projetos Cecon
22 lines (21 loc) • 704 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PayioOrderQueueEntity = void 0;
var enums_1 = require("../enums");
var PayioOrderQueueEntity = /** @class */ (function () {
function PayioOrderQueueEntity() {
this.appId = '';
this.attempts = 0;
this.companyId = '';
this.companyName = '';
this.createdAt = new Date();
this.data = '';
this.error = '';
this.id = '';
this.lastAttemptAt = new Date();
this.reference = '';
this.status = enums_1.PayioOrderQueueStatusEnum.pending;
}
return PayioOrderQueueEntity;
}());
exports.PayioOrderQueueEntity = PayioOrderQueueEntity;