SearchTaskJSONBody defines parameters for SearchTask.
| 101 | |
| 102 | // SearchTaskJSONBody defines parameters for SearchTask. |
| 103 | type SearchTaskJSONBody struct { |
| 104 | Description *string `json:"description"` |
| 105 | From int64 `json:"from"` |
| 106 | IsDone *bool `json:"isDone"` |
| 107 | Priority *Priority `json:"priority,omitempty"` |
| 108 | Size int64 `json:"size"` |
| 109 | } |
| 110 | |
| 111 | // UpdateTaskJSONBody defines parameters for UpdateTask. |
| 112 | type UpdateTaskJSONBody struct { |
nothing calls this directly
no outgoing calls
no test coverage detected