UNPKG

scheunemann-interfaces

Version:
26 lines (25 loc) 810 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.OrderItemCompositionEntity = void 0; var OrderItemCompositionEntity = /** @class */ (function () { // #endregion Properties (6) // #region Constructors (1) function OrderItemCompositionEntity(data) { // #region Properties (6) this.amount = 0; this.code = ''; this.description = ''; this.imageUrl = ''; this.quantity = 0; this.unit = ''; if (data) { for (var key in data) { if (data.hasOwnProperty(key) && key in this) { this[key] = data[key]; } } } } return OrderItemCompositionEntity; }()); exports.OrderItemCompositionEntity = OrderItemCompositionEntity;