feat (vclaim/bpjs/jkn): add several endpoint
This commit is contained in:
No files matched your search
@@ -0,0 +1,7 @@
|
||||
package controlplan
|
||||
|
||||
type ReadListDto struct {
|
||||
PathValue1 string `json:"-"` // jenis kontrol
|
||||
PathValue2 string `json:"-"` // kode poli
|
||||
PathValue3 string `json:"-"` // tanggal
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
package controlplan
|
||||
|
||||
type Response struct {
|
||||
MetaData MetaData `json:"metaData"`
|
||||
Response *ResponseItems `json:"response"` // nullable
|
||||
}
|
||||
|
||||
type MetaData struct {
|
||||
Code string `json:"code"`
|
||||
Message string `json:"message"`
|
||||
}
|
||||
|
||||
type ResponseItems struct {
|
||||
List []DoctorSchedule `json:"list"`
|
||||
}
|
||||
|
||||
type DoctorSchedule struct {
|
||||
JadwalPraktek string `json:"jadwalPraktek"`
|
||||
Kapasitas string `json:"kapasitas"`
|
||||
KodeDokter string `json:"kodeDokter"`
|
||||
NamaDokter string `json:"namaDokter"`
|
||||
}
|
||||
Reference in New Issue
Block a user