Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var DefaultChartEntry = ChartEntry{}
Functions ¶
This section is empty.
Types ¶
type Chart ¶
type Chart struct {
ChartEntries []ChartEntry `json:"chart_entries"`
PerPage int `json:"per_page"`
TotalEntries int `json:"total_entries"`
}
type ChartEntry ¶
type ChartEntry struct {
ID int `json:"id"`
Title string `json:"title"`
SignedState string `json:"signed_state"`
PatientID int `json:"patient_id"`
AuthorID int `json:"author_id"`
AppointmentID int `json:"appointment_id"`
Appointment schedule.Appointment `json:"appointment"` //TODO: populate cache
TreatmentID int `json:"treatment_id"`
CreatedAt schedule.JaneTime `json:"create_at"`
EnteredOn schedule.JaneTime `json:"entered_on"`
ChartParts []ChartPart `json:"chart_parts"`
Snippet string `json:"snippet"`
}
func (ChartEntry) PrintSelector ¶
func (entry ChartEntry) PrintSelector() string
type ChartPartUpdate ¶
Click to show internal directories.
Click to hide internal directories.