UNPKG

brazilian-courts-scrappers

Version:

Data scrapper para fazer raspagem de dados de processos judiciais dos portais de tribunais do Brasil.

32 lines 1.56 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class ScrappedProcesso { constructor(numero, sistema, partesRequerentes, partesRequeridas, outrosParticipantes, andamentos, pedidos, url, dataDistribuicao, valorDaCausa, causaDePedir, juizo, juizAtual, audienciaFutura, tipoDeAcao, segredoJustica, numeroProcessoPrincipal, numeroRegional, numerosIncidentes, numerosProcessosRelacionados, errorMsgs = []) { this.numero = numero; this.sistema = sistema; this.partesRequerentes = partesRequerentes; this.partesRequeridas = partesRequeridas; this.outrosParticipantes = outrosParticipantes; this.andamentos = andamentos; this.pedidos = pedidos; this.url = url; this.dataDistribuicao = dataDistribuicao; this.valorDaCausa = valorDaCausa; this.causaDePedir = causaDePedir; this.juizo = juizo; this.juizAtual = juizAtual; this.audienciaFutura = audienciaFutura; this.tipoDeAcao = tipoDeAcao; this.segredoJustica = segredoJustica; this.numeroProcessoPrincipal = numeroProcessoPrincipal; this.numeroRegional = numeroRegional; this.numerosIncidentes = numerosIncidentes; this.numerosProcessosRelacionados = numerosProcessosRelacionados; this.errorMsgs = errorMsgs; this.dataDistribuicao = dataDistribuicao ? new Date(dataDistribuicao.getTime()) : undefined; } } exports.default = ScrappedProcesso; //# sourceMappingURL=ScrappedProcesso.js.map