cecon-interfaces
Version:
Interfaces de Projetos Cecon
24 lines (23 loc) • 683 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PayioOptionEntity = void 0;
var PayioOptionEntity = /** @class */ (function () {
function PayioOptionEntity(data) {
this.description = '';
this.externalCode = '';
this.id = '';
this.imageUrl = '';
this.index = 0;
this.name = '';
this.price = 0;
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return PayioOptionEntity;
}());
exports.PayioOptionEntity = PayioOptionEntity;