UNPKG

cecon-interfaces

Version:
35 lines (34 loc) 1.07 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.RequestedItemsEntity = void 0; var RequestedItemsEntity = /** @class */ (function () { // #endregion Properties (9) // #region Constructors (1) function RequestedItemsEntity(data) { // #region Properties (9) this.companyId = null; this.containerId = null; this.createdAt = new Date(); this.data = []; this.id = ''; this.pos = null; this.preview = false; this.token = ''; this.updatedAt = new Date(); this.isPaid = false; this.status = null; this.message = null; this.messageException = null; this.referenceToken = null; this.resendCount = 0; if (data) { for (var key in data) { if (data.hasOwnProperty(key) && key in this) { this[key] = data[key]; } } } } return RequestedItemsEntity; }()); exports.RequestedItemsEntity = RequestedItemsEntity;