Documentation ¶
Index ¶
- func ConvertStringSliceToPointerSlice(strSlice []string) []*string
- func CreateAdmin(input model.CreateAdminInput) (model.Admin, error)
- func CreateAlert(input model.CreateAlertInput) (model.Alert, error)
- func CreateAnteChir(input model.CreateAnteChirInput) (model.AnteChir, error)
- func CreateAnteDisease(input model.CreateAnteDiseaseInput) (model.AnteDisease, error)
- func CreateAnteFamily(input model.CreateAnteFamilyInput) (model.AnteFamily, error)
- func CreateBlackList(input model.CreateBlackListInput) (model.BlackList, error)
- func CreateChat(input model.CreateChatInput) (model.Chat, error)
- func CreateDeviceConnect(input model.CreateDeviceConnectInput) (model.DeviceConnect, error)
- func CreateDisease(input model.CreateDiseaseInput) (model.Disease, error)
- func CreateDoctor(input model.CreateDoctorInput) (model.Doctor, error)
- func CreateDocument(input model.CreateDocumentInput) (model.Document, error)
- func CreateDoubleAuth(input model.CreateDoubleAuthInput) (model.DoubleAuth, error)
- func CreateMedicalFolder(input model.CreateMedicalFolderInput) (model.MedicalInfo, error)
- func CreateMedicine(input model.CreateMedicineInput) (model.Medicine, error)
- func CreateNlpReport(input model.CreateNlpReportInput) (model.NlpReport, error)
- func CreateNotification(input model.CreateNotificationInput) (model.Notification, error)
- func CreatePatient(input model.CreatePatientInput) (model.Patient, error)
- func CreateRdv(input model.CreateRdvInput) (model.Rdv, error)
- func CreateSaveCode(input model.CreateSaveCodeInput) (model.SaveCode, error)
- func CreateSession(input model.CreateSessionInput) (model.Session, error)
- func CreateSymptom(input model.CreateSymptomInput) (model.Symptom, error)
- func CreateTreatment(input model.CreateTreatmentInput) (model.Treatment, error)
- func CreateTreatmentsFollowUp(input model.CreateTreatmentsFollowUpInput) (model.TreatmentsFollowUp, error)
- func DeleteAdmin(id string) (bool, error)
- func DeleteAlert(id string) (bool, error)
- func DeleteAnteChir(id string) (bool, error)
- func DeleteAnteDisease(id string) (bool, error)
- func DeleteAnteFamily(id string) (bool, error)
- func DeleteBlackList(id string) (bool, error)
- func DeleteChat(id string) (bool, error)
- func DeleteDeviceConnect(id string) (bool, error)
- func DeleteDisease(id string) (bool, error)
- func DeleteDoctor(id string) (bool, error)
- func DeleteDocument(id string) (bool, error)
- func DeleteDoubleAuth(id string) (bool, error)
- func DeleteMedicalFolder(id string) (bool, error)
- func DeleteMedicine(id string) (bool, error)
- func DeleteNotification(id string) (bool, error)
- func DeletePatient(id string) (bool, error)
- func DeleteRdv(id string) (bool, error)
- func DeleteSaveCode(id string) (bool, error)
- func DeleteSession(id string) (bool, error)
- func DeleteSlot(id string) (bool, error)
- func DeleteSymptom(id string) (bool, error)
- func DeleteTreatment(id string) (bool, error)
- func DeleteTreatmentsFollowUp(id string) (bool, error)
- func GetAdminByEmail(email string) (model.Admin, error)
- func GetAdminById(id string) (model.Admin, error)
- func GetAdmins(option *model.Options) ([]model.Admin, error)
- func GetAlertById(id string) (model.Alert, error)
- func GetAlerts(option *model.Options) ([]model.Alert, error)
- func GetAnteChirByID(id string) (model.AnteChir, error)
- func GetAnteChirs(option *model.Options) ([]model.AnteChir, error)
- func GetAnteDiseaseByID(id string) (model.AnteDisease, error)
- func GetAnteDiseaseByIDWithSymptoms(anteDiseaseId string) (model.AnteDisease, error)
- func GetAnteDiseases(option *model.Options) ([]model.AnteDisease, error)
- func GetAnteFamilies(option *model.Options) ([]model.AnteFamily, error)
- func GetAnteFamilyByID(id string) (model.AnteFamily, error)
- func GetBlackList(option *model.Options) ([]model.BlackList, error)
- func GetBlackListById(id string) (model.BlackList, error)
- func GetChatById(id string) (model.Chat, error)
- func GetChats(id string, option *model.Options) ([]model.Chat, error)
- func GetDeviceConnectById(id string) (model.DeviceConnect, error)
- func GetDeviceConnectByIp(ip_address string) (model.DeviceConnect, error)
- func GetDevicesConnect(id string, option *model.Options) ([]model.DeviceConnect, error)
- func GetDiseaseById(id string) (model.Disease, error)
- func GetDiseases(option *model.Options) ([]model.Disease, error)
- func GetDoctorByEmail(email string) (model.Doctor, error)
- func GetDoctorById(id string) (model.Doctor, error)
- func GetDoctorRdv(doctor_id string, option *model.Options) ([]model.Rdv, error)
- func GetDoctors(option *model.Options) ([]model.Doctor, error)
- func GetDocumentById(id string) (model.Document, error)
- func GetDocuments(option *model.Options) ([]model.Document, error)
- func GetDoubleAuthById(id string) (model.DoubleAuth, error)
- func GetDoubleAuths(option *model.Options) ([]model.DoubleAuth, error)
- func GetMedicalFolder(option *model.Options) ([]model.MedicalInfo, error)
- func GetMedicalFolderByID(id string) (model.MedicalInfo, error)
- func GetMedicineByID(id string) (model.Medicine, error)
- func GetMedicineByIDWithSymptoms(medicineId string) (model.Medicine, error)
- func GetMedicines(option *model.Options) ([]model.Medicine, error)
- func GetNlpReports(option *model.Options) ([]model.NlpReport, error)
- func GetNlpReportsByVersion(version int, option *model.Options) ([]model.NlpReport, error)
- func GetNotificationById(id string) (model.Notification, error)
- func GetNotifications(option *model.Options) ([]model.Notification, error)
- func GetPatientByEmail(email string) (model.Patient, error)
- func GetPatientById(id string) (model.Patient, error)
- func GetPatientDocument(id string, option *model.Options) ([]model.Document, error)
- func GetPatientRdv(id_patient string, option *model.Options) ([]model.Rdv, error)
- func GetPatients(option *model.Options) ([]model.Patient, error)
- func GetPatientsFromDoctorById(id string, option *model.Options) ([]model.Patient, error)
- func GetRdvById(id string) (model.Rdv, error)
- func GetSaveCode(option *model.Options) ([]model.SaveCode, error)
- func GetSaveCodeById(id string) (model.SaveCode, error)
- func GetSessionById(id string) (model.Session, error)
- func GetSessions(option *model.Options) ([]model.Session, error)
- func GetSlotById(id string) (model.Rdv, error)
- func GetSlots(id string, option *model.Options) ([]model.Rdv, error)
- func GetSymptomByCode(code string) (model.Symptom, error)
- func GetSymptomById(id string) (model.Symptom, error)
- func GetSymptoms(option *model.Options) ([]model.Symptom, error)
- func GetSymptomsByDiseaseName(name string) (model.Disease, error)
- func GetTreatmentByID(id string) (model.Treatment, error)
- func GetTreatments(option *model.Options) ([]model.Treatment, error)
- func GetTreatmentsFollowUpById(id string) (model.TreatmentsFollowUp, error)
- func GetTreatmentsFollowUps(id string, option *model.Options) ([]model.TreatmentsFollowUp, error)
- func GetWaitingRdv(doctor_id string, option *model.Options) ([]model.Rdv, error)
- func UpdateAccountsMedicalFolder(id string, input model.UpdateAccountMedicalFolder) (model.MedicalInfo, error)
- func UpdateAdmin(id string, input model.UpdateAdminInput) (model.Admin, error)
- func UpdateAlert(id string, input model.UpdateAlertInput) (model.Alert, error)
- func UpdateAnteChir(id string, input model.UpdateAnteChirInput) (model.AnteChir, error)
- func UpdateAnteDisease(id string, input model.UpdateAnteDiseaseInput) (model.AnteDisease, error)
- func UpdateAnteFamily(id string, input model.UpdateAnteFamilyInput) (model.AnteFamily, error)
- func UpdateBlackList(id string, input model.UpdateBlackListInput) (model.BlackList, error)
- func UpdateChat(id string, input model.UpdateChatInput) (model.Chat, error)
- func UpdateDeviceConnect(id string, input model.UpdateDeviceConnectInput) (model.DeviceConnect, error)
- func UpdateDisease(id string, input model.UpdateDiseaseInput) (model.Disease, error)
- func UpdateDoctor(id string, input model.UpdateDoctorInput) (model.Doctor, error)
- func UpdateDoctorsDeviceConnect(id string, input model.UpdateDoctorsDeviceConnectInput) (model.Doctor, error)
- func UpdateDoctorsPatientIDs(id string, input model.UpdateDoctorsPatientIDsInput) (model.Doctor, error)
- func UpdateDoctorsTrustDevice(id string, input model.UpdateDoctorsTrustDeviceInput) (model.Doctor, error)
- func UpdateDocument(id string, input model.UpdateDocumentInput) (model.Document, error)
- func UpdateDoubleAuth(id string, input model.UpdateDoubleAuthInput) (model.DoubleAuth, error)
- func UpdateMedicalFolder(id string, input model.UpdateMedicalFolderInput) (model.MedicalInfo, error)
- func UpdateNotification(id string, input model.UpdateNotificationInput) (model.Notification, error)
- func UpdatePatient(id string, input model.UpdatePatientInput) (model.Patient, error)
- func UpdatePatientTrustDevice(id string, input model.UpdatePatientTrustDeviceInput) (model.Patient, error)
- func UpdatePatientsDeviceConnect(id string, input model.UpdatePatientsDeviceConnectInput) (model.Patient, error)
- func UpdatePatientsRendezVousIds(id string, input model.UpdatePatientRendezVousIdsInput) (model.Patient, error)
- func UpdateRdv(id string, input model.UpdateRdvInput) (model.Rdv, error)
- func UpdateSaveCode(id string, input model.UpdateSaveCodeInput) (model.SaveCode, error)
- func UpdateSession(id string, input model.UpdateSessionInput) (model.Session, error)
- func UpdateSymptom(id string, input model.UpdateSymptomInput) (model.Symptom, error)
- func UpdateTreatment(id string, input model.UpdateTreatmentInput) (model.Treatment, error)
- func UpdateTreatmentsFollowUp(id string, input model.UpdateTreatmentsFollowUpInput) (model.TreatmentsFollowUp, error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CreateAdmin ¶
func CreateAdmin(input model.CreateAdminInput) (model.Admin, error)
func CreateAlert ¶
func CreateAlert(input model.CreateAlertInput) (model.Alert, error)
func CreateAnteChir ¶
func CreateAnteChir(input model.CreateAnteChirInput) (model.AnteChir, error)
func CreateAnteDisease ¶
func CreateAnteDisease(input model.CreateAnteDiseaseInput) (model.AnteDisease, error)
func CreateAnteFamily ¶
func CreateAnteFamily(input model.CreateAnteFamilyInput) (model.AnteFamily, error)
func CreateBlackList ¶
func CreateBlackList(input model.CreateBlackListInput) (model.BlackList, error)
func CreateChat ¶
func CreateChat(input model.CreateChatInput) (model.Chat, error)
func CreateDeviceConnect ¶
func CreateDeviceConnect(input model.CreateDeviceConnectInput) (model.DeviceConnect, error)
func CreateDisease ¶
func CreateDisease(input model.CreateDiseaseInput) (model.Disease, error)
func CreateDoctor ¶
func CreateDoctor(input model.CreateDoctorInput) (model.Doctor, error)
func CreateDocument ¶
func CreateDocument(input model.CreateDocumentInput) (model.Document, error)
func CreateDoubleAuth ¶
func CreateDoubleAuth(input model.CreateDoubleAuthInput) (model.DoubleAuth, error)
func CreateMedicalFolder ¶
func CreateMedicalFolder(input model.CreateMedicalFolderInput) (model.MedicalInfo, error)
func CreateMedicine ¶
func CreateMedicine(input model.CreateMedicineInput) (model.Medicine, error)
func CreateNlpReport ¶
func CreateNlpReport(input model.CreateNlpReportInput) (model.NlpReport, error)
func CreateNotification ¶
func CreateNotification(input model.CreateNotificationInput) (model.Notification, error)
func CreatePatient ¶
func CreatePatient(input model.CreatePatientInput) (model.Patient, error)
func CreateSaveCode ¶
func CreateSaveCode(input model.CreateSaveCodeInput) (model.SaveCode, error)
func CreateSession ¶
func CreateSession(input model.CreateSessionInput) (model.Session, error)
func CreateSymptom ¶
func CreateSymptom(input model.CreateSymptomInput) (model.Symptom, error)
func CreateTreatment ¶
func CreateTreatment(input model.CreateTreatmentInput) (model.Treatment, error)
func CreateTreatmentsFollowUp ¶
func CreateTreatmentsFollowUp(input model.CreateTreatmentsFollowUpInput) (model.TreatmentsFollowUp, error)
func DeleteAdmin ¶
func DeleteAlert ¶
func DeleteAnteChir ¶
func DeleteAnteDisease ¶
func DeleteAnteFamily ¶
func DeleteBlackList ¶
func DeleteChat ¶
func DeleteDeviceConnect ¶
func DeleteDisease ¶
func DeleteDoctor ¶
func DeleteDocument ¶
func DeleteDoubleAuth ¶
func DeleteMedicalFolder ¶
func DeleteMedicine ¶
func DeleteNotification ¶
func DeletePatient ¶
func DeleteSaveCode ¶
func DeleteSession ¶
func DeleteSlot ¶
func DeleteSymptom ¶
func DeleteTreatment ¶
func GetAnteDiseaseByID ¶
func GetAnteDiseaseByID(id string) (model.AnteDisease, error)
func GetAnteDiseaseByIDWithSymptoms ¶ added in v2.1.8
func GetAnteDiseaseByIDWithSymptoms(anteDiseaseId string) (model.AnteDisease, error)
func GetAnteDiseases ¶
func GetAnteDiseases(option *model.Options) ([]model.AnteDisease, error)
func GetAnteFamilies ¶
func GetAnteFamilies(option *model.Options) ([]model.AnteFamily, error)
func GetAnteFamilyByID ¶
func GetAnteFamilyByID(id string) (model.AnteFamily, error)
func GetDeviceConnectById ¶
func GetDeviceConnectById(id string) (model.DeviceConnect, error)
func GetDeviceConnectByIp ¶ added in v2.0.11
func GetDeviceConnectByIp(ip_address string) (model.DeviceConnect, error)
func GetDevicesConnect ¶
func GetDoubleAuthById ¶
func GetDoubleAuthById(id string) (model.DoubleAuth, error)
func GetDoubleAuths ¶
func GetDoubleAuths(option *model.Options) ([]model.DoubleAuth, error)
func GetMedicalFolder ¶
func GetMedicalFolder(option *model.Options) ([]model.MedicalInfo, error)
func GetMedicalFolderByID ¶
func GetMedicalFolderByID(id string) (model.MedicalInfo, error)
func GetMedicineByIDWithSymptoms ¶ added in v2.1.8
func GetNlpReportsByVersion ¶
func GetNotificationById ¶
func GetNotificationById(id string) (model.Notification, error)
func GetNotifications ¶
func GetNotifications(option *model.Options) ([]model.Notification, error)
func GetPatientDocument ¶
func GetPatientRdv ¶
func GetTreatmentsFollowUpById ¶
func GetTreatmentsFollowUpById(id string) (model.TreatmentsFollowUp, error)
func GetTreatmentsFollowUps ¶
func GetWaitingRdv ¶
func UpdateAccountsMedicalFolder ¶ added in v2.0.8
func UpdateAccountsMedicalFolder(id string, input model.UpdateAccountMedicalFolder) (model.MedicalInfo, error)
func UpdateAdmin ¶
func UpdateAlert ¶
func UpdateAnteChir ¶
func UpdateAnteDisease ¶
func UpdateAnteDisease(id string, input model.UpdateAnteDiseaseInput) (model.AnteDisease, error)
func UpdateAnteFamily ¶
func UpdateAnteFamily(id string, input model.UpdateAnteFamilyInput) (model.AnteFamily, error)
func UpdateBlackList ¶
func UpdateChat ¶
func UpdateDeviceConnect ¶
func UpdateDeviceConnect(id string, input model.UpdateDeviceConnectInput) (model.DeviceConnect, error)
func UpdateDisease ¶
func UpdateDoctor ¶
func UpdateDoctorsDeviceConnect ¶ added in v2.0.2
func UpdateDoctorsPatientIDs ¶
func UpdateDoctorsTrustDevice ¶ added in v2.0.2
func UpdateDocument ¶
func UpdateDoubleAuth ¶
func UpdateDoubleAuth(id string, input model.UpdateDoubleAuthInput) (model.DoubleAuth, error)
func UpdateMedicalFolder ¶
func UpdateMedicalFolder(id string, input model.UpdateMedicalFolderInput) (model.MedicalInfo, error)
func UpdateNotification ¶
func UpdateNotification(id string, input model.UpdateNotificationInput) (model.Notification, error)
func UpdatePatient ¶
func UpdatePatientTrustDevice ¶ added in v2.0.2
func UpdatePatientsDeviceConnect ¶ added in v2.0.2
func UpdatePatientsRendezVousIds ¶ added in v2.0.6
func UpdateSaveCode ¶
func UpdateSession ¶
func UpdateSymptom ¶
func UpdateTreatment ¶
func UpdateTreatmentsFollowUp ¶
func UpdateTreatmentsFollowUp(id string, input model.UpdateTreatmentsFollowUpInput) (model.TreatmentsFollowUp, error)
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.