UNPKG

mobyo-interfaces

Version:
23 lines (22 loc) 737 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.PayioChefConfigScaleEntity = void 0; var PayioChefConfigScaleEntity = /** @class */ (function () { // #endregion Properties (3) // #region Constructors (1) function PayioChefConfigScaleEntity(data) { // #region Properties (3) this.baudRate = '2400'; this.brand = null; this.model = null; if (data) { for (var key in data) { if (data.hasOwnProperty(key) && key in this) { this[key] = data[key]; } } } } return PayioChefConfigScaleEntity; }()); exports.PayioChefConfigScaleEntity = PayioChefConfigScaleEntity;