package domain type Cedulado struct { Cedula ID int64 `json:"id"` Nombres string `json:"nombres"` Apellido1 string `json:"apellido1"` Apellido2 string `json:"apellido2"` Sexo string `json:"sexo"` Direccion string `json:"direccion"` Telefono string `json:"telefono"` FechaNac string `json:"fecha_nac"` } type MultipleResults struct { Data []*Cedulado `json:"data"` Total int64 `json:"total"` Page int64 `json:"page"` }