UNPKG

cecon-interfaces

Version:
32 lines (31 loc) 942 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.QueryEntity = void 0; var QueryEntity = /** @class */ (function () { // #endregion Properties (12) // #region Constructors (1) function QueryEntity(data) { // #region Properties (12) this.apikey = null; this.companyId = null; this.containerId = null; this.dateField = null; this.endDate = undefined; this.filterBy = undefined; this.lastDocId = null; this.limit = '100'; this.query = undefined; this.sandbox = ''; this.startDate = undefined; this.status = undefined; if (data) { for (var key in data) { if (data.hasOwnProperty(key) && key in this) { this[key] = data[key]; } } } } return QueryEntity; }()); exports.QueryEntity = QueryEntity;