23 lines
503 B
Go
23 lines
503 B
Go
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"`
|
|
}
|