You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/api/error.gen.go

23 lines
510 B

// Code generated by "make api"; DO NOT EDIT.
package api
import "bytes"
type Error struct {
Status int32 `json:"status,omitempty"`
Code string `json:"code,omitempty"`
Message string `json:"message,omitempty"`
Details *ErrorDetails `json:"details,omitempty"`
responseBody *bytes.Buffer
responseMap map[string]interface{}
}
func (n Error) ResponseBody() *bytes.Buffer {
return n.responseBody
}
func (n Error) ResponseMap() map[string]interface{} {
return n.responseMap
}