UNPKG

scheunemann-interfaces

Version:
29 lines (28 loc) 886 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.MottuOrderDeliveryManEntity = void 0; var MottuOrderDeliveryManEntity = /** @class */ (function () { // #endregion Properties (9) // #region Constructors (1) function MottuOrderDeliveryManEntity(data) { // #region Properties (9) this.ddd = ''; this.document = ''; this.email = ''; this.id = 0; this.latitude = 0; this.longitude = 0; this.name = ''; this.phone = ''; this.profileId = 0; if (data) { for (var key in data) { if (data.hasOwnProperty(key) && key in this) { this[key] = data[key]; } } } } return MottuOrderDeliveryManEntity; }()); exports.MottuOrderDeliveryManEntity = MottuOrderDeliveryManEntity;