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

16 lines
525 B

// Code generated by "make api"; DO NOT EDIT.
package api
type Error struct {
// The HTTP Status code applicable to this error
Status int32 `json:"status,omitempty"`
// An application-specific error string
Code string `json:"code,omitempty"`
// A human readable explanation specific to this occurrence of the error
Message string `json:"message,omitempty"`
// Additional metadata regarding the error. Depending on the error
// different fields will be populated.
Details *ErrorDetails `json:"details,omitempty"`
}