1
0
mirror of https://github.com/mattermost/focalboard.git synced 2024-11-27 08:31:20 +02:00
focalboard/server/model/errorResponse.go

14 lines
245 B
Go
Raw Normal View History

2021-02-17 21:29:20 +02:00
package model
// ErrorResponse is an error response
// swagger:model
type ErrorResponse struct {
// The error message
// required: false
Error string `json:"error"`
2021-03-26 20:01:54 +02:00
// The error code
// required: false
ErrorCode int `json:"errorCode"`
2021-02-17 21:29:20 +02:00
}