cecon-interfaces
Version:
Interfaces de Projetos Cecon
29 lines (28 loc) • 905 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.IuguPaymentTokenDataEntity = void 0;
var IuguPaymentTokenDataEntity = /** @class */ (function () {
// #endregion Properties (9)
// #region Constructors (1)
function IuguPaymentTokenDataEntity(data) {
// #region Properties (9)
this.bin = '';
this.brand = '';
this.displayNumber = '';
this.firstDigits = '';
this.holderName = '';
this.lastDigits = '';
this.maskedNumber = '';
this.month = 0;
this.year = 2035;
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return IuguPaymentTokenDataEntity;
}());
exports.IuguPaymentTokenDataEntity = IuguPaymentTokenDataEntity;