UNPKG

cecon-interfaces

Version:
26 lines (25 loc) 887 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.PayioOrderIndoorEntity = void 0; var enums_1 = require("../../../order/enums"); var PayioOrderIndoorEntity = /** @class */ (function () { // #endregion Properties (5) // #region Constructors (1) function PayioOrderIndoorEntity(data) { // #region Properties (5) this.deliveryDateTime = new Date(new Date().getTime() + 1000 * 60 * 15); this.mode = enums_1.EIndoorMode.DEFAULT; this.preferential = false; this.tab = ''; this.table = ''; if (data) { for (var key in data) { if (data.hasOwnProperty(key) && key in this) { this[key] = data[key]; } } } } return PayioOrderIndoorEntity; }()); exports.PayioOrderIndoorEntity = PayioOrderIndoorEntity;