mobyo-interfaces
Version:
Interfaces de Projetos Mobyo
35 lines (34 loc) • 1.05 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PayioMemberEntity = void 0;
var PayioMemberEntity = /** @class */ (function () {
// #endregion Properties (15)
// #region Constructors (1)
function PayioMemberEntity(data) {
// #region Properties (15)
this.accessCount = null;
this.active = true;
this.companyId = '';
this.companyName = '';
this.containerId = null;
this.createdAt = new Date();
this.id = '';
this.imageUrl = null;
this.lastAccessAt = null;
this.name = '';
this.permissions = [];
this.sandbox = false;
this.tags = [];
this.updatedAt = new Date();
this.userId = '';
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return PayioMemberEntity;
}());
exports.PayioMemberEntity = PayioMemberEntity;