scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
31 lines (30 loc) • 1.18 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.CompanyInfo = void 0;
var CompanyInfo = /** @class */ (function () {
function CompanyInfo(req) {
// #region Properties (9)
this.companyId = '';
this.containerId = '';
this.partnerId = '';
this.customerId = '';
this.tokenId = '';
this.uid = '';
this.userEmail = '';
this.userName = '';
this.userPhoneNumber = '';
this.userPhotoUrl = '';
this.companyId = (req === null || req === void 0 ? void 0 : req.companyId) || '';
this.partnerId = (req === null || req === void 0 ? void 0 : req.partnerId) || '';
this.containerId = (req === null || req === void 0 ? void 0 : req.containerId) || '';
this.customerId = (req === null || req === void 0 ? void 0 : req.customerId) || '';
this.tokenId = (req === null || req === void 0 ? void 0 : req.id) || '';
this.userEmail = '';
this.userPhotoUrl = '';
this.userPhoneNumber = '';
this.uid = '';
this.userName = '';
}
return CompanyInfo;
}());
exports.CompanyInfo = CompanyInfo;