2020-02-10 09:23:10 +00:00
|
|
|
package models
|
|
|
|
|
|
|
|
type ProtocolError struct {
|
2021-04-06 13:55:41 +00:00
|
|
|
ErrCode string `structs:"code"`
|
|
|
|
ErrText string `structs:"text"`
|
|
|
|
ErrPayload map[string]interface{} `structs:"payload,omitempty"`
|
2020-02-10 09:23:10 +00:00
|
|
|
}
|