brazilian-courts-scrappers
Version:
Data scrapper para fazer raspagem de dados de processos judiciais dos portais de tribunais do Brasil.
21 lines • 774 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
class ScrappedParte {
constructor(nome, tipoDeParte, dontHaveCpfCnpj, noCpfCnpjReason, cpf, cnpj, judSystemId, endereco, email, telefone, oab, advogados, errorMsgs) {
this.nome = nome;
this.tipoDeParte = tipoDeParte;
this.dontHaveCpfCnpj = dontHaveCpfCnpj;
this.noCpfCnpjReason = noCpfCnpjReason;
this.cpf = cpf;
this.cnpj = cnpj;
this.judSystemId = judSystemId;
this.endereco = endereco;
this.email = email;
this.telefone = telefone;
this.oab = oab;
this.advogados = advogados;
this.errorMsgs = errorMsgs;
}
}
exports.default = ScrappedParte;
//# sourceMappingURL=ScrappedParte.js.map