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
534 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"`
lastResponseBody *bytes.Buffer
lastResponseMap map[string]interface{}
}
func (n Error) LastResponseBody() *bytes.Buffer {
return n.lastResponseBody
}
func (n Error) LastResponseMap() map[string]interface{} {
return n.lastResponseMap
}