cecon-interfaces
Version:
Interfaces de Projetos Cecon
29 lines (28 loc) • 959 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SubscriptionCustomerProfileEntity = void 0;
var general_1 = require("../../general");
var SubscriptionCustomerProfileEntity = /** @class */ (function () {
// #endregion Properties (8)
// #region Constructors (1)
function SubscriptionCustomerProfileEntity(data) {
// #region Properties (8)
this.doc = '';
this.docType = general_1.EDocType.CNPJ;
this.email = '';
this.id = '';
this.imageUrl = '';
this.name = '';
this.phoneNumber = '';
this.uid = '';
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return SubscriptionCustomerProfileEntity;
}());
exports.SubscriptionCustomerProfileEntity = SubscriptionCustomerProfileEntity;