UNPKG

cecon-interfaces

Version:
22 lines (21 loc) 704 B
"use strict"; 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;