UNPKG

cecon-interfaces

Version:
29 lines (28 loc) 905 B
"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;