cecon-interfaces
Version:
Interfaces de Projetos Cecon
31 lines (30 loc) • 936 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.IuguChargeCreditCardEntity = void 0;
var IuguChargeCreditCardEntity = /** @class */ (function () {
function IuguChargeCreditCardEntity(data) {
// #region Properties (13)
this.LR = '00';
this.bin = '';
this.brand = '';
this.errors = {};
this.identification = null;
this.invoiceId = '';
this.last4 = '';
this.message = '';
this.pdf = '';
this.reversible = false;
this.success = false;
this.token = '';
this.url = '';
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return IuguChargeCreditCardEntity;
}());
exports.IuguChargeCreditCardEntity = IuguChargeCreditCardEntity;