cecon-interfaces
Version:
Interfaces de Projetos Cecon
25 lines (24 loc) • 791 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PayioJwtPayloadInfoEntity = void 0;
var PayioJwtPayloadInfoEntity = /** @class */ (function () {
function PayioJwtPayloadInfoEntity(data) {
this.companyId = '';
this.companyName = '';
this.containerId = null;
this.containerName = null;
this.doc = null;
this.docType = null;
this.natipayPix = false;
this.sandbox = false;
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return PayioJwtPayloadInfoEntity;
}());
exports.PayioJwtPayloadInfoEntity = PayioJwtPayloadInfoEntity;