Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct { ID string `json:"id,omitempty"` FamilyName string `json:"family_name,omitempty"` Name string `json:"name,omitempty"` Patronomic string `json:"patronomic,omitempty"` Employee *Employee `json:"employee,omitempty"` }
Client presents client
type Employee ¶
type Employee struct { ID string `json:"id,omitempty"` FamilyName string `json:"family_name,omitempty"` Name string `json:"name,omitempty"` Patronomic string `json:"patronomic,omitempty"` Clients []*Client `json:"clients,omitempty"` }
Employee presents psychologist
type Employment ¶
type Employment struct { Client *Client `json:"client,omitempty"` Shedule []*Shedule `json:"shedule,omitempty"` }
Employment ...
Click to show internal directories.
Click to hide internal directories.