github.com/kyma-incubator/compass/components/director@v0.0.0-20230623144113-d764f56ff805/pkg/httputils/model.go (about) 1 package httputils 2 3 // ErrorResponse missing godoc 4 type ErrorResponse struct { 5 Errors []Error `json:"errors"` 6 } 7 8 // Error missing godoc 9 type Error struct { 10 Message string `json:"message"` 11 }