UNPKG

scheunemann-interfaces

Version:
27 lines (26 loc) 797 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.MottuAddressEntity = void 0; var MottuAddressEntity = /** @class */ (function () { // #endregion Properties (7) // #region Constructors (1) function MottuAddressEntity(data) { // #region Properties (7) this.city = 'SP'; this.complement = ''; this.neighborhood = ''; this.number = ''; this.state = 'SP'; this.street = ''; this.zipCode = ''; if (data) { for (var key in data) { if (data.hasOwnProperty(key) && key in this) { this[key] = data[key]; } } } } return MottuAddressEntity; }()); exports.MottuAddressEntity = MottuAddressEntity;