Combines the following repositories into one: https://github.com/mattermost/mattermost-server https://github.com/mattermost/mattermost-webapp https://github.com/mattermost/focalboard https://github.com/mattermost/mattermost-plugin-playbooks
17 строки
358 B
Go
17 строки
358 B
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package model
|
|
|
|
// ErrorResponse is an error response
|
|
// swagger:model
|
|
type ErrorResponse struct {
|
|
// The error message
|
|
// required: false
|
|
Error string `json:"error"`
|
|
|
|
// The error code
|
|
// required: false
|
|
ErrorCode int `json:"errorCode"`
|
|
}
|