cecon-interfaces
Version:
Interfaces de Projetos Cecon
22 lines (21 loc) • 763 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PayioCompanyNatipayCredentialEntity = void 0;
var PayioCompanyNatipayCredentialEntity = /** @class */ (function () {
function PayioCompanyNatipayCredentialEntity(data) {
this.accessToken = '';
this.expiresAt = new Date();
this.expiresIn = 0;
this.refreshToken = '';
this.tokenType = '';
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return PayioCompanyNatipayCredentialEntity;
}());
exports.PayioCompanyNatipayCredentialEntity = PayioCompanyNatipayCredentialEntity;