Documentation ¶
Overview ¶
Package parameters provides primitives to interact the openapi HTTP API.
Code generated by github.com/deepmap/oapi-codegen DO NOT EDIT.
Index ¶
- func GetSwagger() (*openapi3.Swagger, error)
- func NewGetContentObjectRequest(server string, param ComplexObject) (*http.Request, error)
- func NewGetCookieRequest(server string, params *GetCookieParams) (*http.Request, error)
- func NewGetDeepObjectRequest(server string, params *GetDeepObjectParams) (*http.Request, error)
- func NewGetHeaderRequest(server string, params *GetHeaderParams) (*http.Request, error)
- func NewGetLabelExplodeArrayRequest(server string, param []int32) (*http.Request, error)
- func NewGetLabelExplodeObjectRequest(server string, param Object) (*http.Request, error)
- func NewGetLabelNoExplodeArrayRequest(server string, param []int32) (*http.Request, error)
- func NewGetLabelNoExplodeObjectRequest(server string, param Object) (*http.Request, error)
- func NewGetMatrixExplodeArrayRequest(server string, id []int32) (*http.Request, error)
- func NewGetMatrixExplodeObjectRequest(server string, id Object) (*http.Request, error)
- func NewGetMatrixNoExplodeArrayRequest(server string, id []int32) (*http.Request, error)
- func NewGetMatrixNoExplodeObjectRequest(server string, id Object) (*http.Request, error)
- func NewGetPassThroughRequest(server string, param string) (*http.Request, error)
- func NewGetQueryFormRequest(server string, params *GetQueryFormParams) (*http.Request, error)
- func NewGetSimpleExplodeArrayRequest(server string, param []int32) (*http.Request, error)
- func NewGetSimpleExplodeObjectRequest(server string, param Object) (*http.Request, error)
- func NewGetSimpleNoExplodeArrayRequest(server string, param []int32) (*http.Request, error)
- func NewGetSimpleNoExplodeObjectRequest(server string, param Object) (*http.Request, error)
- func NewGetSimplePrimitiveRequest(server string, param int32) (*http.Request, error)
- func RegisterHandlers(router EchoRouter, si ServerInterface)
- func RegisterHandlersWithBaseURL(router EchoRouter, si ServerInterface, baseURL string)
- type Client
- func (c *Client) GetContentObject(ctx context.Context, param ComplexObject, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *Client) GetCookie(ctx context.Context, params *GetCookieParams, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *Client) GetDeepObject(ctx context.Context, params *GetDeepObjectParams, ...) (*http.Response, error)
- func (c *Client) GetHeader(ctx context.Context, params *GetHeaderParams, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *Client) GetLabelExplodeArray(ctx context.Context, param []int32, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *Client) GetLabelExplodeObject(ctx context.Context, param Object, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *Client) GetLabelNoExplodeArray(ctx context.Context, param []int32, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *Client) GetLabelNoExplodeObject(ctx context.Context, param Object, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *Client) GetMatrixExplodeArray(ctx context.Context, id []int32, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *Client) GetMatrixExplodeObject(ctx context.Context, id Object, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *Client) GetMatrixNoExplodeArray(ctx context.Context, id []int32, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *Client) GetMatrixNoExplodeObject(ctx context.Context, id Object, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *Client) GetPassThrough(ctx context.Context, param string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *Client) GetQueryForm(ctx context.Context, params *GetQueryFormParams, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *Client) GetSimpleExplodeArray(ctx context.Context, param []int32, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *Client) GetSimpleExplodeObject(ctx context.Context, param Object, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *Client) GetSimpleNoExplodeArray(ctx context.Context, param []int32, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *Client) GetSimpleNoExplodeObject(ctx context.Context, param Object, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *Client) GetSimplePrimitive(ctx context.Context, param int32, reqEditors ...RequestEditorFn) (*http.Response, error)
- type ClientInterface
- type ClientOption
- type ClientWithResponses
- func (c *ClientWithResponses) GetContentObjectWithResponse(ctx context.Context, param ComplexObject) (*GetContentObjectClientResponse, error)
- func (c *ClientWithResponses) GetCookieWithResponse(ctx context.Context, params *GetCookieParams) (*GetCookieClientResponse, error)
- func (c *ClientWithResponses) GetDeepObjectWithResponse(ctx context.Context, params *GetDeepObjectParams) (*GetDeepObjectClientResponse, error)
- func (c *ClientWithResponses) GetHeaderWithResponse(ctx context.Context, params *GetHeaderParams) (*GetHeaderClientResponse, error)
- func (c *ClientWithResponses) GetLabelExplodeArrayWithResponse(ctx context.Context, param []int32) (*GetLabelExplodeArrayClientResponse, error)
- func (c *ClientWithResponses) GetLabelExplodeObjectWithResponse(ctx context.Context, param Object) (*GetLabelExplodeObjectClientResponse, error)
- func (c *ClientWithResponses) GetLabelNoExplodeArrayWithResponse(ctx context.Context, param []int32) (*GetLabelNoExplodeArrayClientResponse, error)
- func (c *ClientWithResponses) GetLabelNoExplodeObjectWithResponse(ctx context.Context, param Object) (*GetLabelNoExplodeObjectClientResponse, error)
- func (c *ClientWithResponses) GetMatrixExplodeArrayWithResponse(ctx context.Context, id []int32) (*GetMatrixExplodeArrayClientResponse, error)
- func (c *ClientWithResponses) GetMatrixExplodeObjectWithResponse(ctx context.Context, id Object) (*GetMatrixExplodeObjectClientResponse, error)
- func (c *ClientWithResponses) GetMatrixNoExplodeArrayWithResponse(ctx context.Context, id []int32) (*GetMatrixNoExplodeArrayClientResponse, error)
- func (c *ClientWithResponses) GetMatrixNoExplodeObjectWithResponse(ctx context.Context, id Object) (*GetMatrixNoExplodeObjectClientResponse, error)
- func (c *ClientWithResponses) GetPassThroughWithResponse(ctx context.Context, param string) (*GetPassThroughClientResponse, error)
- func (c *ClientWithResponses) GetQueryFormWithResponse(ctx context.Context, params *GetQueryFormParams) (*GetQueryFormClientResponse, error)
- func (c *ClientWithResponses) GetSimpleExplodeArrayWithResponse(ctx context.Context, param []int32) (*GetSimpleExplodeArrayClientResponse, error)
- func (c *ClientWithResponses) GetSimpleExplodeObjectWithResponse(ctx context.Context, param Object) (*GetSimpleExplodeObjectClientResponse, error)
- func (c *ClientWithResponses) GetSimpleNoExplodeArrayWithResponse(ctx context.Context, param []int32) (*GetSimpleNoExplodeArrayClientResponse, error)
- func (c *ClientWithResponses) GetSimpleNoExplodeObjectWithResponse(ctx context.Context, param Object) (*GetSimpleNoExplodeObjectClientResponse, error)
- func (c *ClientWithResponses) GetSimplePrimitiveWithResponse(ctx context.Context, param int32) (*GetSimplePrimitiveClientResponse, error)
- type ClientWithResponsesInterface
- type ComplexObject
- type EchoRouter
- type GetContentObjectClientResponse
- type GetCookieClientResponse
- type GetCookieParams
- type GetDeepObjectClientResponse
- type GetDeepObjectParams
- type GetHeaderClientResponse
- type GetHeaderParams
- type GetLabelExplodeArrayClientResponse
- type GetLabelExplodeObjectClientResponse
- type GetLabelNoExplodeArrayClientResponse
- type GetLabelNoExplodeObjectClientResponse
- type GetMatrixExplodeArrayClientResponse
- type GetMatrixExplodeObjectClientResponse
- type GetMatrixNoExplodeArrayClientResponse
- type GetMatrixNoExplodeObjectClientResponse
- type GetPassThroughClientResponse
- type GetQueryFormClientResponse
- type GetQueryFormParams
- type GetSimpleExplodeArrayClientResponse
- type GetSimpleExplodeObjectClientResponse
- type GetSimpleNoExplodeArrayClientResponse
- type GetSimpleNoExplodeObjectClientResponse
- type GetSimplePrimitiveClientResponse
- type HttpRequestDoer
- type Object
- type RequestEditorFn
- type ServerInterface
- type ServerInterfaceWrapper
- func (w *ServerInterfaceWrapper) GetContentObject(ctx echo.Context) error
- func (w *ServerInterfaceWrapper) GetCookie(ctx echo.Context) error
- func (w *ServerInterfaceWrapper) GetDeepObject(ctx echo.Context) error
- func (w *ServerInterfaceWrapper) GetHeader(ctx echo.Context) error
- func (w *ServerInterfaceWrapper) GetLabelExplodeArray(ctx echo.Context) error
- func (w *ServerInterfaceWrapper) GetLabelExplodeObject(ctx echo.Context) error
- func (w *ServerInterfaceWrapper) GetLabelNoExplodeArray(ctx echo.Context) error
- func (w *ServerInterfaceWrapper) GetLabelNoExplodeObject(ctx echo.Context) error
- func (w *ServerInterfaceWrapper) GetMatrixExplodeArray(ctx echo.Context) error
- func (w *ServerInterfaceWrapper) GetMatrixExplodeObject(ctx echo.Context) error
- func (w *ServerInterfaceWrapper) GetMatrixNoExplodeArray(ctx echo.Context) error
- func (w *ServerInterfaceWrapper) GetMatrixNoExplodeObject(ctx echo.Context) error
- func (w *ServerInterfaceWrapper) GetPassThrough(ctx echo.Context) error
- func (w *ServerInterfaceWrapper) GetQueryForm(ctx echo.Context) error
- func (w *ServerInterfaceWrapper) GetSimpleExplodeArray(ctx echo.Context) error
- func (w *ServerInterfaceWrapper) GetSimpleExplodeObject(ctx echo.Context) error
- func (w *ServerInterfaceWrapper) GetSimpleNoExplodeArray(ctx echo.Context) error
- func (w *ServerInterfaceWrapper) GetSimpleNoExplodeObject(ctx echo.Context) error
- func (w *ServerInterfaceWrapper) GetSimplePrimitive(ctx echo.Context) error
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.
func NewGetContentObjectRequest ¶
func NewGetContentObjectRequest(server string, param ComplexObject) (*http.Request, error)
NewGetContentObjectRequest generates requests for GetContentObject
func NewGetCookieRequest ¶
func NewGetCookieRequest(server string, params *GetCookieParams) (*http.Request, error)
NewGetCookieRequest generates requests for GetCookie
func NewGetDeepObjectRequest ¶
func NewGetDeepObjectRequest(server string, params *GetDeepObjectParams) (*http.Request, error)
NewGetDeepObjectRequest generates requests for GetDeepObject
func NewGetHeaderRequest ¶
func NewGetHeaderRequest(server string, params *GetHeaderParams) (*http.Request, error)
NewGetHeaderRequest generates requests for GetHeader
func NewGetLabelExplodeArrayRequest ¶
NewGetLabelExplodeArrayRequest generates requests for GetLabelExplodeArray
func NewGetLabelExplodeObjectRequest ¶
NewGetLabelExplodeObjectRequest generates requests for GetLabelExplodeObject
func NewGetLabelNoExplodeArrayRequest ¶
NewGetLabelNoExplodeArrayRequest generates requests for GetLabelNoExplodeArray
func NewGetLabelNoExplodeObjectRequest ¶
NewGetLabelNoExplodeObjectRequest generates requests for GetLabelNoExplodeObject
func NewGetMatrixExplodeArrayRequest ¶
NewGetMatrixExplodeArrayRequest generates requests for GetMatrixExplodeArray
func NewGetMatrixExplodeObjectRequest ¶
NewGetMatrixExplodeObjectRequest generates requests for GetMatrixExplodeObject
func NewGetMatrixNoExplodeArrayRequest ¶
NewGetMatrixNoExplodeArrayRequest generates requests for GetMatrixNoExplodeArray
func NewGetMatrixNoExplodeObjectRequest ¶
NewGetMatrixNoExplodeObjectRequest generates requests for GetMatrixNoExplodeObject
func NewGetPassThroughRequest ¶
NewGetPassThroughRequest generates requests for GetPassThrough
func NewGetQueryFormRequest ¶
func NewGetQueryFormRequest(server string, params *GetQueryFormParams) (*http.Request, error)
NewGetQueryFormRequest generates requests for GetQueryForm
func NewGetSimpleExplodeArrayRequest ¶
NewGetSimpleExplodeArrayRequest generates requests for GetSimpleExplodeArray
func NewGetSimpleExplodeObjectRequest ¶
NewGetSimpleExplodeObjectRequest generates requests for GetSimpleExplodeObject
func NewGetSimpleNoExplodeArrayRequest ¶
NewGetSimpleNoExplodeArrayRequest generates requests for GetSimpleNoExplodeArray
func NewGetSimpleNoExplodeObjectRequest ¶
NewGetSimpleNoExplodeObjectRequest generates requests for GetSimpleNoExplodeObject
func NewGetSimplePrimitiveRequest ¶
NewGetSimplePrimitiveRequest generates requests for GetSimplePrimitive
func RegisterHandlers ¶
func RegisterHandlers(router EchoRouter, si ServerInterface)
RegisterHandlers adds each server route to the EchoRouter.
func RegisterHandlersWithBaseURL ¶
func RegisterHandlersWithBaseURL(router EchoRouter, si ServerInterface, baseURL string)
Registers handlers, and prepends BaseURL to the paths, so that the paths can be served under a prefix.
Types ¶
type Client ¶
type Client struct { // The endpoint of the server conforming to this interface, with scheme, // https://api.deepmap.com for example. This can contain a path relative // to the server, such as https://api.deepmap.com/dev-test, and all the // paths in the swagger spec will be appended to the server. Server string // Doer for performing requests, typically a *http.Client with any // customized settings, such as certificate chains. Client HttpRequestDoer // A list of callbacks for modifying requests which are generated before sending over // the network. RequestEditors []RequestEditorFn }
Client which conforms to the OpenAPI3 specification for this service.
func NewClient ¶
func NewClient(server string, opts ...ClientOption) (*Client, error)
Creates a new Client, with reasonable defaults
func (*Client) GetContentObject ¶
func (c *Client) GetContentObject(ctx context.Context, param ComplexObject, reqEditors ...RequestEditorFn) (*http.Response, error)
func (*Client) GetCookie ¶
func (c *Client) GetCookie(ctx context.Context, params *GetCookieParams, reqEditors ...RequestEditorFn) (*http.Response, error)
func (*Client) GetDeepObject ¶
func (c *Client) GetDeepObject(ctx context.Context, params *GetDeepObjectParams, reqEditors ...RequestEditorFn) (*http.Response, error)
func (*Client) GetHeader ¶
func (c *Client) GetHeader(ctx context.Context, params *GetHeaderParams, reqEditors ...RequestEditorFn) (*http.Response, error)
func (*Client) GetLabelExplodeArray ¶
func (*Client) GetLabelExplodeObject ¶
func (*Client) GetLabelNoExplodeArray ¶
func (*Client) GetLabelNoExplodeObject ¶
func (*Client) GetMatrixExplodeArray ¶
func (*Client) GetMatrixExplodeObject ¶
func (*Client) GetMatrixNoExplodeArray ¶
func (*Client) GetMatrixNoExplodeObject ¶
func (*Client) GetPassThrough ¶
func (*Client) GetQueryForm ¶
func (c *Client) GetQueryForm(ctx context.Context, params *GetQueryFormParams, reqEditors ...RequestEditorFn) (*http.Response, error)
func (*Client) GetSimpleExplodeArray ¶
func (*Client) GetSimpleExplodeObject ¶
func (*Client) GetSimpleNoExplodeArray ¶
func (*Client) GetSimpleNoExplodeObject ¶
func (*Client) GetSimplePrimitive ¶
type ClientInterface ¶
type ClientInterface interface { // GetContentObject request GetContentObject(ctx context.Context, param ComplexObject, reqEditors ...RequestEditorFn) (*http.Response, error) // GetCookie request GetCookie(ctx context.Context, params *GetCookieParams, reqEditors ...RequestEditorFn) (*http.Response, error) // GetHeader request GetHeader(ctx context.Context, params *GetHeaderParams, reqEditors ...RequestEditorFn) (*http.Response, error) // GetLabelExplodeArray request GetLabelExplodeArray(ctx context.Context, param []int32, reqEditors ...RequestEditorFn) (*http.Response, error) // GetLabelExplodeObject request GetLabelExplodeObject(ctx context.Context, param Object, reqEditors ...RequestEditorFn) (*http.Response, error) // GetLabelNoExplodeArray request GetLabelNoExplodeArray(ctx context.Context, param []int32, reqEditors ...RequestEditorFn) (*http.Response, error) // GetLabelNoExplodeObject request GetLabelNoExplodeObject(ctx context.Context, param Object, reqEditors ...RequestEditorFn) (*http.Response, error) // GetMatrixExplodeArray request GetMatrixExplodeArray(ctx context.Context, id []int32, reqEditors ...RequestEditorFn) (*http.Response, error) // GetMatrixExplodeObject request GetMatrixExplodeObject(ctx context.Context, id Object, reqEditors ...RequestEditorFn) (*http.Response, error) // GetMatrixNoExplodeArray request GetMatrixNoExplodeArray(ctx context.Context, id []int32, reqEditors ...RequestEditorFn) (*http.Response, error) // GetMatrixNoExplodeObject request GetMatrixNoExplodeObject(ctx context.Context, id Object, reqEditors ...RequestEditorFn) (*http.Response, error) // GetPassThrough request GetPassThrough(ctx context.Context, param string, reqEditors ...RequestEditorFn) (*http.Response, error) // GetDeepObject request GetDeepObject(ctx context.Context, params *GetDeepObjectParams, reqEditors ...RequestEditorFn) (*http.Response, error) // GetQueryForm request GetQueryForm(ctx context.Context, params *GetQueryFormParams, reqEditors ...RequestEditorFn) (*http.Response, error) // GetSimpleExplodeArray request GetSimpleExplodeArray(ctx context.Context, param []int32, reqEditors ...RequestEditorFn) (*http.Response, error) // GetSimpleExplodeObject request GetSimpleExplodeObject(ctx context.Context, param Object, reqEditors ...RequestEditorFn) (*http.Response, error) // GetSimpleNoExplodeArray request GetSimpleNoExplodeArray(ctx context.Context, param []int32, reqEditors ...RequestEditorFn) (*http.Response, error) // GetSimpleNoExplodeObject request GetSimpleNoExplodeObject(ctx context.Context, param Object, reqEditors ...RequestEditorFn) (*http.Response, error) // GetSimplePrimitive request GetSimplePrimitive(ctx context.Context, param int32, reqEditors ...RequestEditorFn) (*http.Response, error) }
The interface specification for the client above.
type ClientOption ¶
ClientOption allows setting custom parameters during construction
func WithHTTPClient ¶
func WithHTTPClient(doer HttpRequestDoer) ClientOption
WithHTTPClient allows overriding the default Doer, which is automatically created using http.Client. This is useful for tests.
func WithRequestEditorFn ¶
func WithRequestEditorFn(fn RequestEditorFn) ClientOption
WithRequestEditorFn allows setting up a callback function, which will be called right before sending the request. This can be used to mutate the request.
type ClientWithResponses ¶
type ClientWithResponses struct {
ClientInterface
}
ClientWithResponses builds on ClientInterface to offer response payloads
func NewClientWithResponses ¶
func NewClientWithResponses(server string, opts ...ClientOption) (*ClientWithResponses, error)
NewClientWithResponses creates a new ClientWithResponses, which wraps Client with return type handling
func (*ClientWithResponses) GetContentObjectWithResponse ¶
func (c *ClientWithResponses) GetContentObjectWithResponse(ctx context.Context, param ComplexObject) (*GetContentObjectClientResponse, error)
GetContentObjectWithResponse request returning *GetContentObjectResponse
func (*ClientWithResponses) GetCookieWithResponse ¶
func (c *ClientWithResponses) GetCookieWithResponse(ctx context.Context, params *GetCookieParams) (*GetCookieClientResponse, error)
GetCookieWithResponse request returning *GetCookieResponse
func (*ClientWithResponses) GetDeepObjectWithResponse ¶
func (c *ClientWithResponses) GetDeepObjectWithResponse(ctx context.Context, params *GetDeepObjectParams) (*GetDeepObjectClientResponse, error)
GetDeepObjectWithResponse request returning *GetDeepObjectResponse
func (*ClientWithResponses) GetHeaderWithResponse ¶
func (c *ClientWithResponses) GetHeaderWithResponse(ctx context.Context, params *GetHeaderParams) (*GetHeaderClientResponse, error)
GetHeaderWithResponse request returning *GetHeaderResponse
func (*ClientWithResponses) GetLabelExplodeArrayWithResponse ¶
func (c *ClientWithResponses) GetLabelExplodeArrayWithResponse(ctx context.Context, param []int32) (*GetLabelExplodeArrayClientResponse, error)
GetLabelExplodeArrayWithResponse request returning *GetLabelExplodeArrayResponse
func (*ClientWithResponses) GetLabelExplodeObjectWithResponse ¶
func (c *ClientWithResponses) GetLabelExplodeObjectWithResponse(ctx context.Context, param Object) (*GetLabelExplodeObjectClientResponse, error)
GetLabelExplodeObjectWithResponse request returning *GetLabelExplodeObjectResponse
func (*ClientWithResponses) GetLabelNoExplodeArrayWithResponse ¶
func (c *ClientWithResponses) GetLabelNoExplodeArrayWithResponse(ctx context.Context, param []int32) (*GetLabelNoExplodeArrayClientResponse, error)
GetLabelNoExplodeArrayWithResponse request returning *GetLabelNoExplodeArrayResponse
func (*ClientWithResponses) GetLabelNoExplodeObjectWithResponse ¶
func (c *ClientWithResponses) GetLabelNoExplodeObjectWithResponse(ctx context.Context, param Object) (*GetLabelNoExplodeObjectClientResponse, error)
GetLabelNoExplodeObjectWithResponse request returning *GetLabelNoExplodeObjectResponse
func (*ClientWithResponses) GetMatrixExplodeArrayWithResponse ¶
func (c *ClientWithResponses) GetMatrixExplodeArrayWithResponse(ctx context.Context, id []int32) (*GetMatrixExplodeArrayClientResponse, error)
GetMatrixExplodeArrayWithResponse request returning *GetMatrixExplodeArrayResponse
func (*ClientWithResponses) GetMatrixExplodeObjectWithResponse ¶
func (c *ClientWithResponses) GetMatrixExplodeObjectWithResponse(ctx context.Context, id Object) (*GetMatrixExplodeObjectClientResponse, error)
GetMatrixExplodeObjectWithResponse request returning *GetMatrixExplodeObjectResponse
func (*ClientWithResponses) GetMatrixNoExplodeArrayWithResponse ¶
func (c *ClientWithResponses) GetMatrixNoExplodeArrayWithResponse(ctx context.Context, id []int32) (*GetMatrixNoExplodeArrayClientResponse, error)
GetMatrixNoExplodeArrayWithResponse request returning *GetMatrixNoExplodeArrayResponse
func (*ClientWithResponses) GetMatrixNoExplodeObjectWithResponse ¶
func (c *ClientWithResponses) GetMatrixNoExplodeObjectWithResponse(ctx context.Context, id Object) (*GetMatrixNoExplodeObjectClientResponse, error)
GetMatrixNoExplodeObjectWithResponse request returning *GetMatrixNoExplodeObjectResponse
func (*ClientWithResponses) GetPassThroughWithResponse ¶
func (c *ClientWithResponses) GetPassThroughWithResponse(ctx context.Context, param string) (*GetPassThroughClientResponse, error)
GetPassThroughWithResponse request returning *GetPassThroughResponse
func (*ClientWithResponses) GetQueryFormWithResponse ¶
func (c *ClientWithResponses) GetQueryFormWithResponse(ctx context.Context, params *GetQueryFormParams) (*GetQueryFormClientResponse, error)
GetQueryFormWithResponse request returning *GetQueryFormResponse
func (*ClientWithResponses) GetSimpleExplodeArrayWithResponse ¶
func (c *ClientWithResponses) GetSimpleExplodeArrayWithResponse(ctx context.Context, param []int32) (*GetSimpleExplodeArrayClientResponse, error)
GetSimpleExplodeArrayWithResponse request returning *GetSimpleExplodeArrayResponse
func (*ClientWithResponses) GetSimpleExplodeObjectWithResponse ¶
func (c *ClientWithResponses) GetSimpleExplodeObjectWithResponse(ctx context.Context, param Object) (*GetSimpleExplodeObjectClientResponse, error)
GetSimpleExplodeObjectWithResponse request returning *GetSimpleExplodeObjectResponse
func (*ClientWithResponses) GetSimpleNoExplodeArrayWithResponse ¶
func (c *ClientWithResponses) GetSimpleNoExplodeArrayWithResponse(ctx context.Context, param []int32) (*GetSimpleNoExplodeArrayClientResponse, error)
GetSimpleNoExplodeArrayWithResponse request returning *GetSimpleNoExplodeArrayResponse
func (*ClientWithResponses) GetSimpleNoExplodeObjectWithResponse ¶
func (c *ClientWithResponses) GetSimpleNoExplodeObjectWithResponse(ctx context.Context, param Object) (*GetSimpleNoExplodeObjectClientResponse, error)
GetSimpleNoExplodeObjectWithResponse request returning *GetSimpleNoExplodeObjectResponse
func (*ClientWithResponses) GetSimplePrimitiveWithResponse ¶
func (c *ClientWithResponses) GetSimplePrimitiveWithResponse(ctx context.Context, param int32) (*GetSimplePrimitiveClientResponse, error)
GetSimplePrimitiveWithResponse request returning *GetSimplePrimitiveResponse
type ClientWithResponsesInterface ¶
type ClientWithResponsesInterface interface { // GetContentObject request GetContentObjectWithResponse(ctx context.Context, param ComplexObject) (*GetContentObjectClientResponse, error) // GetCookie request GetCookieWithResponse(ctx context.Context, params *GetCookieParams) (*GetCookieClientResponse, error) // GetHeader request GetHeaderWithResponse(ctx context.Context, params *GetHeaderParams) (*GetHeaderClientResponse, error) // GetLabelExplodeArray request GetLabelExplodeArrayWithResponse(ctx context.Context, param []int32) (*GetLabelExplodeArrayClientResponse, error) // GetLabelExplodeObject request GetLabelExplodeObjectWithResponse(ctx context.Context, param Object) (*GetLabelExplodeObjectClientResponse, error) // GetLabelNoExplodeArray request GetLabelNoExplodeArrayWithResponse(ctx context.Context, param []int32) (*GetLabelNoExplodeArrayClientResponse, error) // GetLabelNoExplodeObject request GetLabelNoExplodeObjectWithResponse(ctx context.Context, param Object) (*GetLabelNoExplodeObjectClientResponse, error) // GetMatrixExplodeArray request GetMatrixExplodeArrayWithResponse(ctx context.Context, id []int32) (*GetMatrixExplodeArrayClientResponse, error) // GetMatrixExplodeObject request GetMatrixExplodeObjectWithResponse(ctx context.Context, id Object) (*GetMatrixExplodeObjectClientResponse, error) // GetMatrixNoExplodeArray request GetMatrixNoExplodeArrayWithResponse(ctx context.Context, id []int32) (*GetMatrixNoExplodeArrayClientResponse, error) // GetMatrixNoExplodeObject request GetMatrixNoExplodeObjectWithResponse(ctx context.Context, id Object) (*GetMatrixNoExplodeObjectClientResponse, error) // GetPassThrough request GetPassThroughWithResponse(ctx context.Context, param string) (*GetPassThroughClientResponse, error) // GetDeepObject request GetDeepObjectWithResponse(ctx context.Context, params *GetDeepObjectParams) (*GetDeepObjectClientResponse, error) // GetQueryForm request GetQueryFormWithResponse(ctx context.Context, params *GetQueryFormParams) (*GetQueryFormClientResponse, error) // GetSimpleExplodeArray request GetSimpleExplodeArrayWithResponse(ctx context.Context, param []int32) (*GetSimpleExplodeArrayClientResponse, error) // GetSimpleExplodeObject request GetSimpleExplodeObjectWithResponse(ctx context.Context, param Object) (*GetSimpleExplodeObjectClientResponse, error) // GetSimpleNoExplodeArray request GetSimpleNoExplodeArrayWithResponse(ctx context.Context, param []int32) (*GetSimpleNoExplodeArrayClientResponse, error) // GetSimpleNoExplodeObject request GetSimpleNoExplodeObjectWithResponse(ctx context.Context, param Object) (*GetSimpleNoExplodeObjectClientResponse, error) // GetSimplePrimitive request GetSimplePrimitiveWithResponse(ctx context.Context, param int32) (*GetSimplePrimitiveClientResponse, error) }
ClientWithResponsesInterface is the interface specification for the client with responses above.
type ComplexObject ¶
type ComplexObject struct { Id int `json:"Id"` IsAdmin bool `json:"IsAdmin"` Object Object `json:"Object"` }
ComplexObject defines model for ComplexObject.
type EchoRouter ¶
type EchoRouter interface { CONNECT(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route DELETE(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route GET(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route HEAD(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route OPTIONS(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route PATCH(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route POST(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route PUT(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route TRACE(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route }
This is a simple interface which specifies echo.Route addition functions which are present on both echo.Echo and echo.Group, since we want to allow using either of them for path registration
type GetContentObjectClientResponse ¶
func ParseGetContentObjectClientResponse ¶
func ParseGetContentObjectClientResponse(rsp *http.Response) (*GetContentObjectClientResponse, error)
ParseGetContentObjectClientResponse parses an HTTP response from a GetContentObjectWithResponse call
func (GetContentObjectClientResponse) Status ¶
func (r GetContentObjectClientResponse) Status() string
Status returns HTTPResponse.Status
func (GetContentObjectClientResponse) StatusCode ¶
func (r GetContentObjectClientResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type GetCookieClientResponse ¶
func ParseGetCookieClientResponse ¶
func ParseGetCookieClientResponse(rsp *http.Response) (*GetCookieClientResponse, error)
ParseGetCookieClientResponse parses an HTTP response from a GetCookieWithResponse call
func (GetCookieClientResponse) Status ¶
func (r GetCookieClientResponse) Status() string
Status returns HTTPResponse.Status
func (GetCookieClientResponse) StatusCode ¶
func (r GetCookieClientResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type GetCookieParams ¶
type GetCookieParams struct { // primitive P *int32 `json:"p,omitempty"` // primitive Ep *int32 `json:"ep,omitempty"` // exploded array Ea *[]int32 `json:"ea,omitempty"` // array A *[]int32 `json:"a,omitempty"` // exploded object Eo *Object `json:"eo,omitempty"` // object O *Object `json:"o,omitempty"` // complex object Co *ComplexObject `json:"co,omitempty"` }
GetCookieParams defines parameters for GetCookie.
type GetDeepObjectClientResponse ¶
func ParseGetDeepObjectClientResponse ¶
func ParseGetDeepObjectClientResponse(rsp *http.Response) (*GetDeepObjectClientResponse, error)
ParseGetDeepObjectClientResponse parses an HTTP response from a GetDeepObjectWithResponse call
func (GetDeepObjectClientResponse) Status ¶
func (r GetDeepObjectClientResponse) Status() string
Status returns HTTPResponse.Status
func (GetDeepObjectClientResponse) StatusCode ¶
func (r GetDeepObjectClientResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type GetDeepObjectParams ¶
type GetDeepObjectParams struct { // deep object DeepObj ComplexObject `json:"deepObj"` }
GetDeepObjectParams defines parameters for GetDeepObject.
type GetHeaderClientResponse ¶
func ParseGetHeaderClientResponse ¶
func ParseGetHeaderClientResponse(rsp *http.Response) (*GetHeaderClientResponse, error)
ParseGetHeaderClientResponse parses an HTTP response from a GetHeaderWithResponse call
func (GetHeaderClientResponse) Status ¶
func (r GetHeaderClientResponse) Status() string
Status returns HTTPResponse.Status
func (GetHeaderClientResponse) StatusCode ¶
func (r GetHeaderClientResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type GetHeaderParams ¶
type GetHeaderParams struct { // primitive XPrimitive *int32 `json:"X-Primitive,omitempty"` // primitive XPrimitiveExploded *int32 `json:"X-Primitive-Exploded,omitempty"` // exploded array XArrayExploded *[]int32 `json:"X-Array-Exploded,omitempty"` // array XArray *[]int32 `json:"X-Array,omitempty"` // exploded object XObjectExploded *Object `json:"X-Object-Exploded,omitempty"` // object XObject *Object `json:"X-Object,omitempty"` // complex object XComplexObject *ComplexObject `json:"X-Complex-Object,omitempty"` }
GetHeaderParams defines parameters for GetHeader.
type GetLabelExplodeArrayClientResponse ¶
func ParseGetLabelExplodeArrayClientResponse ¶
func ParseGetLabelExplodeArrayClientResponse(rsp *http.Response) (*GetLabelExplodeArrayClientResponse, error)
ParseGetLabelExplodeArrayClientResponse parses an HTTP response from a GetLabelExplodeArrayWithResponse call
func (GetLabelExplodeArrayClientResponse) Status ¶
func (r GetLabelExplodeArrayClientResponse) Status() string
Status returns HTTPResponse.Status
func (GetLabelExplodeArrayClientResponse) StatusCode ¶
func (r GetLabelExplodeArrayClientResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type GetLabelExplodeObjectClientResponse ¶
func ParseGetLabelExplodeObjectClientResponse ¶
func ParseGetLabelExplodeObjectClientResponse(rsp *http.Response) (*GetLabelExplodeObjectClientResponse, error)
ParseGetLabelExplodeObjectClientResponse parses an HTTP response from a GetLabelExplodeObjectWithResponse call
func (GetLabelExplodeObjectClientResponse) Status ¶
func (r GetLabelExplodeObjectClientResponse) Status() string
Status returns HTTPResponse.Status
func (GetLabelExplodeObjectClientResponse) StatusCode ¶
func (r GetLabelExplodeObjectClientResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type GetLabelNoExplodeArrayClientResponse ¶
func ParseGetLabelNoExplodeArrayClientResponse ¶
func ParseGetLabelNoExplodeArrayClientResponse(rsp *http.Response) (*GetLabelNoExplodeArrayClientResponse, error)
ParseGetLabelNoExplodeArrayClientResponse parses an HTTP response from a GetLabelNoExplodeArrayWithResponse call
func (GetLabelNoExplodeArrayClientResponse) Status ¶
func (r GetLabelNoExplodeArrayClientResponse) Status() string
Status returns HTTPResponse.Status
func (GetLabelNoExplodeArrayClientResponse) StatusCode ¶
func (r GetLabelNoExplodeArrayClientResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type GetLabelNoExplodeObjectClientResponse ¶
func ParseGetLabelNoExplodeObjectClientResponse ¶
func ParseGetLabelNoExplodeObjectClientResponse(rsp *http.Response) (*GetLabelNoExplodeObjectClientResponse, error)
ParseGetLabelNoExplodeObjectClientResponse parses an HTTP response from a GetLabelNoExplodeObjectWithResponse call
func (GetLabelNoExplodeObjectClientResponse) Status ¶
func (r GetLabelNoExplodeObjectClientResponse) Status() string
Status returns HTTPResponse.Status
func (GetLabelNoExplodeObjectClientResponse) StatusCode ¶
func (r GetLabelNoExplodeObjectClientResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type GetMatrixExplodeArrayClientResponse ¶
func ParseGetMatrixExplodeArrayClientResponse ¶
func ParseGetMatrixExplodeArrayClientResponse(rsp *http.Response) (*GetMatrixExplodeArrayClientResponse, error)
ParseGetMatrixExplodeArrayClientResponse parses an HTTP response from a GetMatrixExplodeArrayWithResponse call
func (GetMatrixExplodeArrayClientResponse) Status ¶
func (r GetMatrixExplodeArrayClientResponse) Status() string
Status returns HTTPResponse.Status
func (GetMatrixExplodeArrayClientResponse) StatusCode ¶
func (r GetMatrixExplodeArrayClientResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type GetMatrixExplodeObjectClientResponse ¶
func ParseGetMatrixExplodeObjectClientResponse ¶
func ParseGetMatrixExplodeObjectClientResponse(rsp *http.Response) (*GetMatrixExplodeObjectClientResponse, error)
ParseGetMatrixExplodeObjectClientResponse parses an HTTP response from a GetMatrixExplodeObjectWithResponse call
func (GetMatrixExplodeObjectClientResponse) Status ¶
func (r GetMatrixExplodeObjectClientResponse) Status() string
Status returns HTTPResponse.Status
func (GetMatrixExplodeObjectClientResponse) StatusCode ¶
func (r GetMatrixExplodeObjectClientResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type GetMatrixNoExplodeArrayClientResponse ¶
func ParseGetMatrixNoExplodeArrayClientResponse ¶
func ParseGetMatrixNoExplodeArrayClientResponse(rsp *http.Response) (*GetMatrixNoExplodeArrayClientResponse, error)
ParseGetMatrixNoExplodeArrayClientResponse parses an HTTP response from a GetMatrixNoExplodeArrayWithResponse call
func (GetMatrixNoExplodeArrayClientResponse) Status ¶
func (r GetMatrixNoExplodeArrayClientResponse) Status() string
Status returns HTTPResponse.Status
func (GetMatrixNoExplodeArrayClientResponse) StatusCode ¶
func (r GetMatrixNoExplodeArrayClientResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type GetMatrixNoExplodeObjectClientResponse ¶
func ParseGetMatrixNoExplodeObjectClientResponse ¶
func ParseGetMatrixNoExplodeObjectClientResponse(rsp *http.Response) (*GetMatrixNoExplodeObjectClientResponse, error)
ParseGetMatrixNoExplodeObjectClientResponse parses an HTTP response from a GetMatrixNoExplodeObjectWithResponse call
func (GetMatrixNoExplodeObjectClientResponse) Status ¶
func (r GetMatrixNoExplodeObjectClientResponse) Status() string
Status returns HTTPResponse.Status
func (GetMatrixNoExplodeObjectClientResponse) StatusCode ¶
func (r GetMatrixNoExplodeObjectClientResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type GetPassThroughClientResponse ¶
func ParseGetPassThroughClientResponse ¶
func ParseGetPassThroughClientResponse(rsp *http.Response) (*GetPassThroughClientResponse, error)
ParseGetPassThroughClientResponse parses an HTTP response from a GetPassThroughWithResponse call
func (GetPassThroughClientResponse) Status ¶
func (r GetPassThroughClientResponse) Status() string
Status returns HTTPResponse.Status
func (GetPassThroughClientResponse) StatusCode ¶
func (r GetPassThroughClientResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type GetQueryFormClientResponse ¶
func ParseGetQueryFormClientResponse ¶
func ParseGetQueryFormClientResponse(rsp *http.Response) (*GetQueryFormClientResponse, error)
ParseGetQueryFormClientResponse parses an HTTP response from a GetQueryFormWithResponse call
func (GetQueryFormClientResponse) Status ¶
func (r GetQueryFormClientResponse) Status() string
Status returns HTTPResponse.Status
func (GetQueryFormClientResponse) StatusCode ¶
func (r GetQueryFormClientResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type GetQueryFormParams ¶
type GetQueryFormParams struct { // exploded array Ea *[]int32 `json:"ea,omitempty"` // array A *[]int32 `json:"a,omitempty"` // exploded object Eo *Object `json:"eo,omitempty"` // object O *Object `json:"o,omitempty"` // exploded primitive Ep *int32 `json:"ep,omitempty"` // primitive P *int32 `json:"p,omitempty"` // primitive string Ps *string `json:"ps,omitempty"` // complex object Co *ComplexObject `json:"co,omitempty"` }
GetQueryFormParams defines parameters for GetQueryForm.
type GetSimpleExplodeArrayClientResponse ¶
func ParseGetSimpleExplodeArrayClientResponse ¶
func ParseGetSimpleExplodeArrayClientResponse(rsp *http.Response) (*GetSimpleExplodeArrayClientResponse, error)
ParseGetSimpleExplodeArrayClientResponse parses an HTTP response from a GetSimpleExplodeArrayWithResponse call
func (GetSimpleExplodeArrayClientResponse) Status ¶
func (r GetSimpleExplodeArrayClientResponse) Status() string
Status returns HTTPResponse.Status
func (GetSimpleExplodeArrayClientResponse) StatusCode ¶
func (r GetSimpleExplodeArrayClientResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type GetSimpleExplodeObjectClientResponse ¶
func ParseGetSimpleExplodeObjectClientResponse ¶
func ParseGetSimpleExplodeObjectClientResponse(rsp *http.Response) (*GetSimpleExplodeObjectClientResponse, error)
ParseGetSimpleExplodeObjectClientResponse parses an HTTP response from a GetSimpleExplodeObjectWithResponse call
func (GetSimpleExplodeObjectClientResponse) Status ¶
func (r GetSimpleExplodeObjectClientResponse) Status() string
Status returns HTTPResponse.Status
func (GetSimpleExplodeObjectClientResponse) StatusCode ¶
func (r GetSimpleExplodeObjectClientResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type GetSimpleNoExplodeArrayClientResponse ¶
func ParseGetSimpleNoExplodeArrayClientResponse ¶
func ParseGetSimpleNoExplodeArrayClientResponse(rsp *http.Response) (*GetSimpleNoExplodeArrayClientResponse, error)
ParseGetSimpleNoExplodeArrayClientResponse parses an HTTP response from a GetSimpleNoExplodeArrayWithResponse call
func (GetSimpleNoExplodeArrayClientResponse) Status ¶
func (r GetSimpleNoExplodeArrayClientResponse) Status() string
Status returns HTTPResponse.Status
func (GetSimpleNoExplodeArrayClientResponse) StatusCode ¶
func (r GetSimpleNoExplodeArrayClientResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type GetSimpleNoExplodeObjectClientResponse ¶
func ParseGetSimpleNoExplodeObjectClientResponse ¶
func ParseGetSimpleNoExplodeObjectClientResponse(rsp *http.Response) (*GetSimpleNoExplodeObjectClientResponse, error)
ParseGetSimpleNoExplodeObjectClientResponse parses an HTTP response from a GetSimpleNoExplodeObjectWithResponse call
func (GetSimpleNoExplodeObjectClientResponse) Status ¶
func (r GetSimpleNoExplodeObjectClientResponse) Status() string
Status returns HTTPResponse.Status
func (GetSimpleNoExplodeObjectClientResponse) StatusCode ¶
func (r GetSimpleNoExplodeObjectClientResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type GetSimplePrimitiveClientResponse ¶
func ParseGetSimplePrimitiveClientResponse ¶
func ParseGetSimplePrimitiveClientResponse(rsp *http.Response) (*GetSimplePrimitiveClientResponse, error)
ParseGetSimplePrimitiveClientResponse parses an HTTP response from a GetSimplePrimitiveWithResponse call
func (GetSimplePrimitiveClientResponse) Status ¶
func (r GetSimplePrimitiveClientResponse) Status() string
Status returns HTTPResponse.Status
func (GetSimplePrimitiveClientResponse) StatusCode ¶
func (r GetSimplePrimitiveClientResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type HttpRequestDoer ¶
Doer performs HTTP requests.
The standard http.Client implements this interface.
type RequestEditorFn ¶
RequestEditorFn is the function signature for the RequestEditor callback function
type ServerInterface ¶
type ServerInterface interface { // (GET /contentObject/{param}) GetContentObject(ctx echo.Context, param ComplexObject) error // (GET /cookie) GetCookie(ctx echo.Context, params GetCookieParams) error // (GET /header) GetHeader(ctx echo.Context, params GetHeaderParams) error // (GET /labelExplodeArray/{.param*}) GetLabelExplodeArray(ctx echo.Context, param []int32) error // (GET /labelExplodeObject/{.param*}) GetLabelExplodeObject(ctx echo.Context, param Object) error // (GET /labelNoExplodeArray/{.param}) GetLabelNoExplodeArray(ctx echo.Context, param []int32) error // (GET /labelNoExplodeObject/{.param}) GetLabelNoExplodeObject(ctx echo.Context, param Object) error // (GET /matrixExplodeArray/{.id*}) GetMatrixExplodeArray(ctx echo.Context, id []int32) error // (GET /matrixExplodeObject/{.id*}) GetMatrixExplodeObject(ctx echo.Context, id Object) error // (GET /matrixNoExplodeArray/{.id}) GetMatrixNoExplodeArray(ctx echo.Context, id []int32) error // (GET /matrixNoExplodeObject/{.id}) GetMatrixNoExplodeObject(ctx echo.Context, id Object) error // (GET /passThrough/{param}) GetPassThrough(ctx echo.Context, param string) error // (GET /queryDeepObject) GetDeepObject(ctx echo.Context, params GetDeepObjectParams) error // (GET /queryForm) GetQueryForm(ctx echo.Context, params GetQueryFormParams) error // (GET /simpleExplodeArray/{param*}) GetSimpleExplodeArray(ctx echo.Context, param []int32) error // (GET /simpleExplodeObject/{param*}) GetSimpleExplodeObject(ctx echo.Context, param Object) error // (GET /simpleNoExplodeArray/{param}) GetSimpleNoExplodeArray(ctx echo.Context, param []int32) error // (GET /simpleNoExplodeObject/{param}) GetSimpleNoExplodeObject(ctx echo.Context, param Object) error // (GET /simplePrimitive/{param}) GetSimplePrimitive(ctx echo.Context, param int32) error }
ServerInterface represents all server handlers.
type ServerInterfaceWrapper ¶
type ServerInterfaceWrapper struct {
Handler ServerInterface
}
ServerInterfaceWrapper converts echo contexts to parameters.
func (*ServerInterfaceWrapper) GetContentObject ¶
func (w *ServerInterfaceWrapper) GetContentObject(ctx echo.Context) error
GetContentObject converts echo context to params.
func (*ServerInterfaceWrapper) GetCookie ¶
func (w *ServerInterfaceWrapper) GetCookie(ctx echo.Context) error
GetCookie converts echo context to params.
func (*ServerInterfaceWrapper) GetDeepObject ¶
func (w *ServerInterfaceWrapper) GetDeepObject(ctx echo.Context) error
GetDeepObject converts echo context to params.
func (*ServerInterfaceWrapper) GetHeader ¶
func (w *ServerInterfaceWrapper) GetHeader(ctx echo.Context) error
GetHeader converts echo context to params.
func (*ServerInterfaceWrapper) GetLabelExplodeArray ¶
func (w *ServerInterfaceWrapper) GetLabelExplodeArray(ctx echo.Context) error
GetLabelExplodeArray converts echo context to params.
func (*ServerInterfaceWrapper) GetLabelExplodeObject ¶
func (w *ServerInterfaceWrapper) GetLabelExplodeObject(ctx echo.Context) error
GetLabelExplodeObject converts echo context to params.
func (*ServerInterfaceWrapper) GetLabelNoExplodeArray ¶
func (w *ServerInterfaceWrapper) GetLabelNoExplodeArray(ctx echo.Context) error
GetLabelNoExplodeArray converts echo context to params.
func (*ServerInterfaceWrapper) GetLabelNoExplodeObject ¶
func (w *ServerInterfaceWrapper) GetLabelNoExplodeObject(ctx echo.Context) error
GetLabelNoExplodeObject converts echo context to params.
func (*ServerInterfaceWrapper) GetMatrixExplodeArray ¶
func (w *ServerInterfaceWrapper) GetMatrixExplodeArray(ctx echo.Context) error
GetMatrixExplodeArray converts echo context to params.
func (*ServerInterfaceWrapper) GetMatrixExplodeObject ¶
func (w *ServerInterfaceWrapper) GetMatrixExplodeObject(ctx echo.Context) error
GetMatrixExplodeObject converts echo context to params.
func (*ServerInterfaceWrapper) GetMatrixNoExplodeArray ¶
func (w *ServerInterfaceWrapper) GetMatrixNoExplodeArray(ctx echo.Context) error
GetMatrixNoExplodeArray converts echo context to params.
func (*ServerInterfaceWrapper) GetMatrixNoExplodeObject ¶
func (w *ServerInterfaceWrapper) GetMatrixNoExplodeObject(ctx echo.Context) error
GetMatrixNoExplodeObject converts echo context to params.
func (*ServerInterfaceWrapper) GetPassThrough ¶
func (w *ServerInterfaceWrapper) GetPassThrough(ctx echo.Context) error
GetPassThrough converts echo context to params.
func (*ServerInterfaceWrapper) GetQueryForm ¶
func (w *ServerInterfaceWrapper) GetQueryForm(ctx echo.Context) error
GetQueryForm converts echo context to params.
func (*ServerInterfaceWrapper) GetSimpleExplodeArray ¶
func (w *ServerInterfaceWrapper) GetSimpleExplodeArray(ctx echo.Context) error
GetSimpleExplodeArray converts echo context to params.
func (*ServerInterfaceWrapper) GetSimpleExplodeObject ¶
func (w *ServerInterfaceWrapper) GetSimpleExplodeObject(ctx echo.Context) error
GetSimpleExplodeObject converts echo context to params.
func (*ServerInterfaceWrapper) GetSimpleNoExplodeArray ¶
func (w *ServerInterfaceWrapper) GetSimpleNoExplodeArray(ctx echo.Context) error
GetSimpleNoExplodeArray converts echo context to params.
func (*ServerInterfaceWrapper) GetSimpleNoExplodeObject ¶
func (w *ServerInterfaceWrapper) GetSimpleNoExplodeObject(ctx echo.Context) error
GetSimpleNoExplodeObject converts echo context to params.
func (*ServerInterfaceWrapper) GetSimplePrimitive ¶
func (w *ServerInterfaceWrapper) GetSimplePrimitive(ctx echo.Context) error
GetSimplePrimitive converts echo context to params.