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 NewExampleGetRequest(server string) (*http.Request, error) + func ParseexampleGetResponse(rsp *http.Response) (*exampleGetResponse, error) + func RegisterHandlers(router runtime.EchoRouter, si ServerInterface) + type ArrayValue []Value + 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) ExampleGet(ctx context.Context) (*http.Response, error) + func (c *Client) Intercept(req *http.Request, ctx context.Context) error + type ClientInterface interface + ExampleGet func(ctx context.Context) (*http.Response, error) + Intercept func(req *http.Request, ctx context.Context) error + type ClientWithResponses struct + func NewClientWithResponses(server string) *ClientWithResponses + func NewClientWithResponsesAndRequestEditorFunc(server string, reqEditorFn RequestEditorFn) *ClientWithResponses + func (c *ClientWithResponses) ExampleGetWithResponse(ctx context.Context) (*exampleGetResponse, error) + type Document struct + Fields *Document_Fields + type Document_Fields struct + AdditionalProperties map[string]Value + func (a *Document_Fields) Set(fieldName string, value Value) + func (a *Document_Fields) UnmarshalJSON(b []byte) error + func (a Document_Fields) Get(fieldName string) (value Value, found bool) + func (a Document_Fields) MarshalJSON() ([]byte, error) + 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 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 + ExampleGet func(ctx echo.Context) error + type ServerInterfaceWrapper struct + Handler ServerInterface + func (w *ServerInterfaceWrapper) ExampleGet(ctx echo.Context) error + type Value struct + ArrayValue *ArrayValue + StringValue *string