Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CreatePatientInput ¶ added in v1.3.9
type CreatePatientInput struct { Email string `json:"email"` MedicalInfo medical_folder.CreateMedicalInfoInput `json:"medical_info"` }
type DeletePatientResponse ¶ added in v1.3.9
func DeletePatient ¶ added in v1.3.9
func DeletePatient(PatientId string, doctorId string) DeletePatientResponse
type GetPatientByIdResponse ¶
type GetPatientByIdResponse struct { Patient model.Patient MedicalInfo model.MedicalInfo Code int Err error }
func GetPatientById ¶
func GetPatientById(id string) GetPatientByIdResponse
type GetPatientsResponse ¶
type GetPatientsResponse struct { PatientsInfo []PatientWithMedicalInfo `json:"patients_info"` Code int Err error }
func GetPatients ¶
func GetPatients(doctorId string) GetPatientsResponse
type PatientByIdResponse ¶ added in v1.3.9
type PatientByIdResponse struct { Patient model.Patient MedicalInfo model.MedicalInfo Code int Err error }
func CreatePatientFormDoctor ¶ added in v1.3.9
func CreatePatientFormDoctor(newPatient CreatePatientInput, doctorID string) PatientByIdResponse
type PatientWithMedicalInfo ¶ added in v1.3.9
Click to show internal directories.
Click to hide internal directories.