mobyo-interfaces
Version:
Interfaces de Projetos Mobyo
22 lines (21 loc) • 688 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PayioScheduleSlotEntity = void 0;
var PayioScheduleSlotEntity = /** @class */ (function () {
// #endregion Properties (2)
// #region Constructors (1)
function PayioScheduleSlotEntity(data) {
// #region Properties (2)
this.productCode = '';
this.time = '';
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return PayioScheduleSlotEntity;
}());
exports.PayioScheduleSlotEntity = PayioScheduleSlotEntity;