cecon-interfaces
Version:
Interfaces de Projetos Cecon
26 lines (25 loc) • 894 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.IuguPaymentTokenEntity = void 0;
var payment_token_data_entity_1 = require("./payment-token-data.entity");
var IuguPaymentTokenEntity = /** @class */ (function () {
// #endregion Properties (5)
// #region Constructors (1)
function IuguPaymentTokenEntity(data) {
// #region Properties (5)
this.customerId = '';
this.data = new payment_token_data_entity_1.IuguPaymentTokenDataEntity();
this.description = '';
this.id = '';
this.itemType = '';
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return IuguPaymentTokenEntity;
}());
exports.IuguPaymentTokenEntity = IuguPaymentTokenEntity;