mobyo-interfaces
Version:
Interfaces de Projetos Mobyo
26 lines (25 loc) • 790 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.InvoiceCreditCardEntity = void 0;
var InvoiceCreditCardEntity = /** @class */ (function () {
// #endregion Properties (6)
// #region Constructors (1)
function InvoiceCreditCardEntity(data) {
// #region Properties (6)
this.bin = '';
this.brand = '';
this.capturedAt = '';
this.last4 = '';
this.tid = '';
this.transaction = '';
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return InvoiceCreditCardEntity;
}());
exports.InvoiceCreditCardEntity = InvoiceCreditCardEntity;