cecon-interfaces
Version:
Interfaces de Projetos Cecon
36 lines (35 loc) • 1.38 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PayioCashConfigOperationTefEntity = exports.PayioCashConfigOperationEntity = void 0;
var chef_config_1 = require("../../chef-config");
var enums_1 = require("../enums");
var PayioCashConfigOperationEntity = /** @class */ (function () {
function PayioCashConfigOperationEntity(data) {
this.barcodeFormat = chef_config_1.EBarcodeFormat.CODE_6_PRICE_6;
this.tabFormat = null;
this.tef = new PayioCashConfigOperationTefEntity();
this.pdvId = '';
this.visionDeviceId = '';
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return PayioCashConfigOperationEntity;
}());
exports.PayioCashConfigOperationEntity = PayioCashConfigOperationEntity;
var PayioCashConfigOperationTefEntity = /** @class */ (function () {
function PayioCashConfigOperationTefEntity() {
this.companyNumber = '';
this.provider = enums_1.ETefProvider.FISERV;
this.terminal = '';
this.tokenOtp = '';
this.tokenRegister = '';
this.url = '';
}
return PayioCashConfigOperationTefEntity;
}());
exports.PayioCashConfigOperationTefEntity = PayioCashConfigOperationTefEntity;