UNPKG

scheunemann-interfaces

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