UNPKG

cannoli-interfaces

Version:
26 lines (25 loc) 821 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.CannoliApiConfigEntity = void 0; var CannoliApiConfigEntity = /** @class */ (function () { // #endregion Properties (6) // #region Constructors (1) function CannoliApiConfigEntity(data) { // #region Properties (6) this.hasIntegration = false; this.hasPrint = false; this.integrationUrl = ''; this.printCols = 40; this.printInterface = ''; this.printType = ''; if (data) { for (var key in data) { if (data.hasOwnProperty(key) && key in this) { this[key] = data[key]; } } } } return CannoliApiConfigEntity; }()); exports.CannoliApiConfigEntity = CannoliApiConfigEntity;