| 10 | ) |
| 11 | |
| 12 | type DocumentTree struct { |
| 13 | DocumentId int `json:"id"` |
| 14 | DocumentName string `json:"text"` |
| 15 | ParentId interface{} `json:"parent"` |
| 16 | Identify string `json:"identify"` |
| 17 | BookIdentify string `json:"-"` |
| 18 | Version int64 `json:"version"` |
| 19 | State *DocumentSelected `json:"state,omitempty"` |
| 20 | } |
| 21 | type DocumentSelected struct { |
| 22 | Selected bool `json:"selected"` |
| 23 | Opened bool `json:"opened"` |
nothing calls this directly
no outgoing calls
no test coverage detected