# Functions

Creates a new Client, with reasonable defaults.
NewClientWithResponses creates a new ClientWithResponses, which wraps Client with return type handling.
NewGetApiCoinRequest generates requests for GetApiCoin.
NewPostApiInvestmentRequest calls the generic PostApiInvestment builder with application/json body.
NewPostApiInvestmentRequestWithBody generates requests for PostApiInvestment with any type of body.
ParseGetApiCoinResponse parses an HTTP response from a GetApiCoinWithResponse call.
ParsePostApiInvestmentResponse parses an HTTP response from a PostApiInvestmentWithResponse call.
RegisterHandlers adds each server route to the EchoRouter.
Registers handlers, and prepends BaseURL to the paths, so that the paths can be served under a prefix.
WithBaseURL overrides the baseURL.
WithHTTPClient allows overriding the default Doer, which is automatically created using http.Client.
WithRequestEditorFn allows setting up a callback function, which will be called right before sending the request.

# Structs

Client which conforms to the OpenAPI3 specification for this service.
ClientWithResponses builds on ClientInterface to offer response payloads.
Coininvestment defines model for coininvestment.
Current defines model for current.
Data defines model for data.
Detail defines model for detail.
No description provided by the author
Investment defines model for investment.
Message defines model for message.
Myinvestment defines model for myinvestment.
No description provided by the author
ServerInterfaceWrapper converts echo contexts to parameters.

# Interfaces

The interface specification for the client above.
ClientWithResponsesInterface is the interface specification for the client with responses above.
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.
Doer performs HTTP requests.
ServerInterface represents all server handlers.

# Type aliases

ClientOption allows setting custom parameters during construction.
PostApiInvestmentJSONRequestBody defines body for PostApiInvestment for application/json ContentType.
RequestEditorFn is the function signature for the RequestEditor callback function.