1package atc
2
3type ClearTaskCacheResponse struct {
4	CachesRemoved int64 `json:"caches_removed"`
5}
6
7type SaveConfigResponse struct {
8	Errors   []string        `json:"errors,omitempty"`
9	Warnings []ConfigWarning `json:"warnings,omitempty"`
10}
11
12type ConfigResponse struct {
13	Config Config `json:"config"`
14}
15