cecon-interfaces
Version:
Interfaces de Projetos Cecon
28 lines (27 loc) • 983 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.DesenfilaMerchantV2PaymentProviderEntity = void 0;
var DesenfilaMerchantV2PaymentProviderEntity = /** @class */ (function () {
function DesenfilaMerchantV2PaymentProviderEntity(data) {
this.accountId = '';
this.active = true;
this.agent = { accountId: '' };
this.customerId = '';
this.liveApiToken = '';
this.name = '';
this.subscriptionId = '';
this.testApiToken = '';
this.userToken = '';
this.verified = false;
this.verifiedAt = new Date();
if (data) {
for (var key in data) {
if (data.hasOwnProperty(key) && key in this) {
this[key] = data[key];
}
}
}
}
return DesenfilaMerchantV2PaymentProviderEntity;
}());
exports.DesenfilaMerchantV2PaymentProviderEntity = DesenfilaMerchantV2PaymentProviderEntity;