Documentation ¶
Index ¶
- Constants
- func FichaID(expedienteID string) string
- type Actuacion
- type ActuacionWithExpediente
- type ActuacionesPage
- type ActuacionesPagePageable
- type Documento
- func FetchDocumentos(ficha *Ficha, actuacion *Actuacion) ([]*Documento, error)
- func GetAdjuntos(url string, ficha *Ficha, actuacion *Actuacion) ([]*Documento, error)
- func GetAdjuntosCedula(url string, ficha *Ficha, actuacion *Actuacion) ([]*Documento, error)
- func GetAdjuntosNoCedula(url string, ficha *Ficha, actuacion *Actuacion) ([]*Documento, error)
- type Ficha
- type FichaObjetosJuicio
- type FichaRadicaciones
- type FichaUbicacion
- type SearchForm
- type SearchFormFilter
- type SearchResult
- type SearchResultContent
Constants ¶
View Source
const ActuacionType = "actuacion"
View Source
const ActuacionesNotificadasAttachment = 1
View Source
const AdjuntosAttachment = 1
View Source
const CedulaAttachment = 2
View Source
const DocumentType = "document"
View Source
const FichaType = "ficha"
View Source
const RegularAttachment = 0
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Actuacion ¶
type Actuacion struct { EsCedula int `json:"esCedula"` Codigo string `json:"codigo"` ActuacionesNotificadas string `json:"actuacionesNotificadas"` Numero int `json:"-"` FechaFirma int `json:"fechaFirma"` Firmantes string `json:"firmantes"` ActId int `json:"actId"` Titulo string `json:"titulo"` FechaNotificacion int `json:"fechaNotificacion"` PoseeAdjunto int `json:"poseeAdjunto"` CUIJ string `json:"cuij"` Anio int `json:"-"` }
type ActuacionWithExpediente ¶
type ActuacionesPage ¶
type ActuacionesPage struct { TotalPages int `json:"totalPages"` TotalElements int `json:"totalElements"` NumberOfElements int `json:"numberOfElements"` Last bool `json:"last"` First bool `json:"first"` Size int `json:"size"` Number int `json:"number"` Pageable ActuacionesPagePageable `json:"pageable"` Content []*Actuacion `json:"content"` }
type ActuacionesPagePageable ¶
type Documento ¶
type Documento struct { URL string MirrorURL string ActuacionID string `json:"actuacionId"` NumeroDeExpediente string `json:"numeroDeExpediente"` Type int `json:"type"` Nombre string `json:"nombre"` Content string `json:"content"` }
func FetchDocumentos ¶
func GetAdjuntos ¶
func GetAdjuntosCedula ¶
type Ficha ¶
type Ficha struct { ExpId int Radicaciones FichaRadicaciones `json:"radicaciones"` Numero int `json:"numero"` Anio int `json:"anio"` Sufijo int `json:"sufijo"` ObjetosJuicio []FichaObjetosJuicio `json:"objetosJuicio"` Ubicacion FichaUbicacion `json:"ubicacion"` FechaInicio int `json:"fechaInicio"` UltimoMovimiento int `json:"ultimoMovimiento"` TieneSentencia int `json:"tieneSentencia"` EsPrivado int `json:"esPrivado"` TipoExpediente string `json:"tipoExpediente"` CUIJ string `json:"cuij"` Caratula string `json:"caratula"` Monto float64 `json:"monto"` Etiquetas string `json:"etiquetas"` }
func GetExpediente ¶
func (*Ficha) GetActuaciones ¶
func (*Ficha) NumeroDeExpediente ¶
type FichaObjetosJuicio ¶
type FichaRadicaciones ¶
type FichaRadicaciones struct { SecretariaPrimeraInstancia string `json:"secretariaPrimeraInstancia"` OrganismoSegundaInstancia string `json:"organismoSegundaInstancia"` SecretariaSegundaInstancia string `json:"secretariaSegundaInstancia"` OrganismoPrimeraInstancia string `json:"organismoPrimeraInstancia"` }
type FichaUbicacion ¶
type SearchForm ¶
type SearchFormFilter ¶
type SearchFormFilter struct {
Identificador string `json:"identificador"`
}
type SearchResult ¶
type SearchResult struct {
Content []SearchResultContent `json:"content"`
}
type SearchResultContent ¶
type SearchResultContent struct {
ExpId int `json:"expId"`
}
Click to show internal directories.
Click to hide internal directories.