scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
22 lines (21 loc) • 647 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PaymentPixEntity = void 0;
var PaymentPixEntity = /** @class */ (function () {
// #endregion Properties (2)
// #region Constructors (1)
function PaymentPixEntity(data) {
// #region Properties (2)
this.pixKey = '';
this.urlQrImage = '';
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return PaymentPixEntity;
}());
exports.PaymentPixEntity = PaymentPixEntity;