UNPKG

cecon-interfaces

Version:
22 lines (21 loc) 690 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.PayioCardCompanyEntity = void 0; var general_1 = require("../../../general"); var PayioCardCompanyEntity = /** @class */ (function () { function PayioCardCompanyEntity(data) { this.doc = ''; this.docType = general_1.EDocType.CNPJ; this.id = ''; this.name = ''; if (data) { for (var key in data) { if (data.hasOwnProperty(key) && key in this) { this[key] = data[key]; } } } } return PayioCardCompanyEntity; }()); exports.PayioCardCompanyEntity = PayioCardCompanyEntity;