cecon-interfaces
Version:
Interfaces de Projetos Cecon
29 lines (28 loc) • 947 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.GlobalSettingMercadoPagoEntity = void 0;
var GlobalSettingMercadoPagoEntity = /** @class */ (function () {
function GlobalSettingMercadoPagoEntity(data) {
this.accessToken = '';
this.active = false;
this.collectorId = '';
this.expiresAt = null;
this.id = 'MERCADO_PAGO';
this.method = null;
this.publicKey = null;
this.refreshToken = null;
this.renewAt = null;
this.storeId = null;
this.clientSecret = null;
this.clientId = null;
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return GlobalSettingMercadoPagoEntity;
}());
exports.GlobalSettingMercadoPagoEntity = GlobalSettingMercadoPagoEntity;