Documentation ¶
Overview ¶
Package deps provides primitives to interact with the openapi HTTP API.
Code generated by github.com/lzurbriggen/oapi-codegen version (devel) DO NOT EDIT.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GetSwagger ¶
GetSwagger returns the Swagger specification corresponding to the generated code in this file. The external references of Swagger specification are resolved. The logic of resolving external references is tightly connected to "import-mapping" feature. Externally referenced files must be embedded in the corresponding golang packages. Urls can be supported but this task was out of the scope.
Types ¶
type BaseError ¶
type BaseError struct { // Code The underlying http status code Code int32 `json:"code"` // Domain The domain where the error is originating from as defined by the service Domain string `json:"domain"` // Message A simple message in english describing the error and can be returned to the consumer Message string `json:"message"` // Metadata Any additional details to be conveyed as determined by the service. If present, will return map of key value pairs Metadata *map[string]string `json:"metadata,omitempty"` }
BaseError defines model for BaseError.
Click to show internal directories.
Click to hide internal directories.