Versions in this module Expand all Collapse all v1 v1.9.2 Oct 22, 2019 v1.9.1 Oct 22, 2019 Changes in this version + func GetSwagger() (*openapi3.Swagger, error) + func NewIssue30Request(server string, pFallthrough string) (*http.Request, error) + func NewIssue41Request(server string, n1param N5StartsWithNumber) (*http.Request, error) + func NewIssue9Request(server string, params *Issue9Params, body Issue9JSONRequestBody) (*http.Request, error) + func NewIssue9RequestWithBody(server string, params *Issue9Params, contentType string, body io.Reader) (*http.Request, error) + func Parseissue30Response(rsp *http.Response) (*issue30Response, error) + func Parseissue41Response(rsp *http.Response) (*issue41Response, error) + func Parseissue9Response(rsp *http.Response) (*issue9Response, error) + func RegisterHandlers(router runtime.EchoRouter, si ServerInterface) + type AnyType1 interface + type AnyType2 interface + type Client struct + Client *http.Client + Interceptors []Interceptor + RequestCompletion RequestCompletionFn + RequestEditor RequestEditorFn + Server string + func NewClient(ctx context.Context, opts ...Option) (*Client, error) + func (c *Client) Intercept(req *http.Request, ctx context.Context) error + func (c *Client) Issue30(ctx context.Context, pFallthrough string) (*http.Response, error) + func (c *Client) Issue41(ctx context.Context, n1param N5StartsWithNumber) (*http.Response, error) + func (c *Client) Issue9(ctx context.Context, params *Issue9Params, body Issue9JSONRequestBody) (*http.Response, error) + func (c *Client) Issue9WithBody(ctx context.Context, params *Issue9Params, contentType string, body io.Reader) (*http.Response, error) + type ClientInterface interface + Intercept func(req *http.Request, ctx context.Context) error + Issue30 func(ctx context.Context, pFallthrough string) (*http.Response, error) + Issue41 func(ctx context.Context, n1param N5StartsWithNumber) (*http.Response, error) + Issue9 func(ctx context.Context, params *Issue9Params, body Issue9JSONRequestBody) (*http.Response, error) + Issue9WithBody func(ctx context.Context, params *Issue9Params, contentType string, body io.Reader) (*http.Response, error) + type ClientWithResponses struct + func NewClientWithResponses(server string) *ClientWithResponses + func NewClientWithResponsesAndRequestEditorFunc(server string, reqEditorFn RequestEditorFn) *ClientWithResponses + func (c *ClientWithResponses) Issue30WithResponse(ctx context.Context, pFallthrough string) (*issue30Response, error) + func (c *ClientWithResponses) Issue41WithResponse(ctx context.Context, n1param N5StartsWithNumber) (*issue41Response, error) + func (c *ClientWithResponses) Issue9WithBodyWithResponse(ctx context.Context, params *Issue9Params, contentType string, body io.Reader) (*issue9Response, error) + func (c *ClientWithResponses) Issue9WithResponse(ctx context.Context, params *Issue9Params, body Issue9JSONRequestBody) (*issue9Response, error) + type CustomStringType string + type GenericObject map[string]interface + type Interceptor interface + Intercept func(req *http.Request, ctx context.Context) error + type InterceptorFn func(req *http.Request, ctx context.Context) error + func (f InterceptorFn) Intercept(req *http.Request, ctx context.Context) error + type Issue9JSONBody interface + type Issue9JSONRequestBody Issue9JSONBody + type Issue9Params struct + Foo string + type N5StartsWithNumber map[string]interface + type Option func(*Client) error + func WithBaseURL(baseURL string) Option + func WithHTTPClient(httpClient *http.Client) Option + func WithIdleTimeout(timeout time.Duration) Option + func WithInterceptors(interceptors ...Interceptor) Option + func WithMaxIdleConnections(maxIdleConns uint) Option + func WithRequestCompletionFn(fn RequestCompletionFn) Option + func WithRequestEditorFn(fn RequestEditorFn) Option + func WithRequestTimeout(timeout time.Duration) Option + func WithUserAgent(userAgent string) Option + type RequestCompletionFn func(req *http.Request, resp *http.Response) + type RequestEditorFn func(req *http.Request, ctx context.Context) error + type ServerInterface interface + Issue30 func(ctx echo.Context, pFallthrough string) error + Issue41 func(ctx echo.Context, n1param N5StartsWithNumber) error + Issue9 func(ctx echo.Context, params Issue9Params) error + type ServerInterfaceWrapper struct + Handler ServerInterface + func (w *ServerInterfaceWrapper) Issue30(ctx echo.Context) error + func (w *ServerInterfaceWrapper) Issue41(ctx echo.Context) error + func (w *ServerInterfaceWrapper) Issue9(ctx echo.Context) error