UNPKG

cecon-interfaces

Version:
22 lines (21 loc) 702 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.NatipayCardCompanyEntity = void 0; var general_1 = require("../../../general"); var NatipayCardCompanyEntity = /** @class */ (function () { function NatipayCardCompanyEntity(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 NatipayCardCompanyEntity; }()); exports.NatipayCardCompanyEntity = NatipayCardCompanyEntity;