Versions in this module Expand all Collapse all v1 v1.3.13 Aug 14, 2020 Changes in this version + func GetSwagger() (*openapi3.Swagger, error) + func NewEnsureEverythingIsReferencedRequest(server string) (*http.Request, error) + func NewIssue127Request(server string) (*http.Request, error) + func NewIssue185Request(server string, body Issue185JSONRequestBody) (*http.Request, error) + func NewIssue185RequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error) + func NewIssue209Request(server string, str StringInPath) (*http.Request, 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 RegisterHandlers(router EchoRouter, si ServerInterface) + type AnyType1 interface + type AnyType2 interface + type Client struct + Client HttpRequestDoer + RequestEditor RequestEditorFn + Server string + func NewClient(server string, opts ...ClientOption) (*Client, error) + func (c *Client) EnsureEverythingIsReferenced(ctx context.Context) (*http.Response, error) + func (c *Client) Issue127(ctx context.Context) (*http.Response, error) + func (c *Client) Issue185(ctx context.Context, body Issue185JSONRequestBody) (*http.Response, error) + func (c *Client) Issue185WithBody(ctx context.Context, contentType string, body io.Reader) (*http.Response, error) + func (c *Client) Issue209(ctx context.Context, str StringInPath) (*http.Response, 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 + EnsureEverythingIsReferenced func(ctx context.Context) (*http.Response, error) + Issue127 func(ctx context.Context) (*http.Response, error) + Issue185 func(ctx context.Context, body Issue185JSONRequestBody) (*http.Response, error) + Issue185WithBody func(ctx context.Context, contentType string, body io.Reader) (*http.Response, error) + Issue209 func(ctx context.Context, str StringInPath) (*http.Response, 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 ClientOption func(*Client) error + func WithBaseURL(baseURL string) ClientOption + func WithHTTPClient(doer HttpRequestDoer) ClientOption + func WithRequestEditorFn(fn RequestEditorFn) ClientOption + type ClientWithResponses struct + func NewClientWithResponses(server string, opts ...ClientOption) (*ClientWithResponses, error) + func (c *ClientWithResponses) EnsureEverythingIsReferencedWithResponse(ctx context.Context) (*EnsureEverythingIsReferencedResponse, error) + func (c *ClientWithResponses) Issue127WithResponse(ctx context.Context) (*Issue127Response, error) + func (c *ClientWithResponses) Issue185WithBodyWithResponse(ctx context.Context, contentType string, body io.Reader) (*Issue185Response, error) + func (c *ClientWithResponses) Issue185WithResponse(ctx context.Context, body Issue185JSONRequestBody) (*Issue185Response, error) + func (c *ClientWithResponses) Issue209WithResponse(ctx context.Context, str StringInPath) (*Issue209Response, error) + 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 ClientWithResponsesInterface interface + EnsureEverythingIsReferencedWithResponse func(ctx context.Context) (*EnsureEverythingIsReferencedResponse, error) + Issue127WithResponse func(ctx context.Context) (*Issue127Response, error) + Issue185WithBodyWithResponse func(ctx context.Context, contentType string, body io.Reader) (*Issue185Response, error) + Issue185WithResponse func(ctx context.Context, body Issue185JSONRequestBody) (*Issue185Response, error) + Issue209WithResponse func(ctx context.Context, str StringInPath) (*Issue209Response, error) + Issue30WithResponse func(ctx context.Context, pFallthrough string) (*Issue30Response, error) + Issue41WithResponse func(ctx context.Context, n1param N5StartsWithNumber) (*Issue41Response, error) + Issue9WithBodyWithResponse func(ctx context.Context, params *Issue9Params, contentType string, body io.Reader) (*Issue9Response, error) + Issue9WithResponse func(ctx context.Context, params *Issue9Params, body Issue9JSONRequestBody) (*Issue9Response, error) + type CustomStringType string + type EchoRouter interface + CONNECT func(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route + DELETE func(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route + GET func(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route + HEAD func(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route + OPTIONS func(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route + PATCH func(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route + POST func(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route + PUT func(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route + TRACE func(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route + type EnsureEverythingIsReferencedResponse struct + Body []byte + HTTPResponse *http.Response + JSON200 ... + func ParseEnsureEverythingIsReferencedResponse(rsp *http.Response) (*EnsureEverythingIsReferencedResponse, error) + func (r EnsureEverythingIsReferencedResponse) Status() string + func (r EnsureEverythingIsReferencedResponse) StatusCode() int + type GenericObject map[string]interface + type HttpRequestDoer interface + Do func(req *http.Request) (*http.Response, error) + type Issue127Response struct + Body []byte + HTTPResponse *http.Response + JSON200 *GenericObject + JSONDefault *GenericObject + XML200 *GenericObject + YAML200 *GenericObject + func ParseIssue127Response(rsp *http.Response) (*Issue127Response, error) + func (r Issue127Response) Status() string + func (r Issue127Response) StatusCode() int + type Issue185JSONBody NullableProperties + type Issue185JSONRequestBody Issue185JSONBody + type Issue185Response struct + Body []byte + HTTPResponse *http.Response + func ParseIssue185Response(rsp *http.Response) (*Issue185Response, error) + func (r Issue185Response) Status() string + func (r Issue185Response) StatusCode() int + type Issue209Response struct + Body []byte + HTTPResponse *http.Response + func ParseIssue209Response(rsp *http.Response) (*Issue209Response, error) + func (r Issue209Response) Status() string + func (r Issue209Response) StatusCode() int + type Issue30Response struct + Body []byte + HTTPResponse *http.Response + func ParseIssue30Response(rsp *http.Response) (*Issue30Response, error) + func (r Issue30Response) Status() string + func (r Issue30Response) StatusCode() int + type Issue41Response struct + Body []byte + HTTPResponse *http.Response + func ParseIssue41Response(rsp *http.Response) (*Issue41Response, error) + func (r Issue41Response) Status() string + func (r Issue41Response) StatusCode() int + type Issue9JSONBody interface + type Issue9JSONRequestBody Issue9JSONBody + type Issue9Params struct + Foo string + type Issue9Response struct + Body []byte + HTTPResponse *http.Response + func ParseIssue9Response(rsp *http.Response) (*Issue9Response, error) + func (r Issue9Response) Status() string + func (r Issue9Response) StatusCode() int + type N5StartsWithNumber map[string]interface + type NullableProperties struct + Optional *string + OptionalAndNullable *string + Required string + RequiredAndNullable *string + type RequestEditorFn func(ctx context.Context, req *http.Request) error + type ServerInterface interface + EnsureEverythingIsReferenced func(ctx echo.Context) error + Issue127 func(ctx echo.Context) error + Issue185 func(ctx echo.Context) error + Issue209 func(ctx echo.Context, str StringInPath) error + 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) EnsureEverythingIsReferenced(ctx echo.Context) error + func (w *ServerInterfaceWrapper) Issue127(ctx echo.Context) error + func (w *ServerInterfaceWrapper) Issue185(ctx echo.Context) error + func (w *ServerInterfaceWrapper) Issue209(ctx echo.Context) error + func (w *ServerInterfaceWrapper) Issue30(ctx echo.Context) error + func (w *ServerInterfaceWrapper) Issue41(ctx echo.Context) error + func (w *ServerInterfaceWrapper) Issue9(ctx echo.Context) error + type StringInPath string