cecon-interfaces
Version:
Interfaces de Projetos Cecon
20 lines (19 loc) • 605 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.NatipayCardAuthEntity = void 0;
var NatipayCardAuthEntity = /** @class */ (function () {
function NatipayCardAuthEntity(data) {
this.basic = null;
this.password = null;
this.user = null;
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return NatipayCardAuthEntity;
}());
exports.NatipayCardAuthEntity = NatipayCardAuthEntity;