Documentation ¶
Index ¶
Constants ¶
const ( // DefaultHost is the default Host // found in Meta (info) section of spec file DefaultHost string = "esi.evetech.net" // DefaultBasePath is the default BasePath // found in Meta (info) section of spec file DefaultBasePath string = "/" )
Variables ¶
var Default = NewHTTPClient(nil)
Default e v e swagger interface HTTP client.
var DefaultSchemes = []string{"https"}
DefaultSchemes are the default schemes found in Meta (info) section of spec file
Functions ¶
This section is empty.
Types ¶
type EVESwaggerInterface ¶
type EVESwaggerInterface struct { Alliance alliance.ClientService Assets assets.ClientService Bookmarks bookmarks.ClientService Calendar calendar.ClientService Character character.ClientService Clones clones.ClientService Contacts contacts.ClientService Contracts contracts.ClientService Corporation corporation.ClientService Dogma dogma.ClientService FactionWarfare faction_warfare.ClientService Fittings fittings.ClientService Fleets fleets.ClientService Incursions incursions.ClientService Industry industry.ClientService Insurance insurance.ClientService Killmails killmails.ClientService Location location.ClientService Loyalty loyalty.ClientService Mail mail.ClientService Market market.ClientService Meta meta.ClientService Opportunities opportunities.ClientService PlanetaryInteraction planetary_interaction.ClientService Routes routes.ClientService Search search.ClientService Skills skills.ClientService Sovereignty sovereignty.ClientService Status status.ClientService Universe universe.ClientService UserInterface user_interface.ClientService Wallet wallet.ClientService Wars wars.ClientService Transport runtime.ClientTransport }
EVESwaggerInterface is a client for e v e swagger interface
func New ¶
func New(transport runtime.ClientTransport, formats strfmt.Registry) *EVESwaggerInterface
New creates a new e v e swagger interface client
func NewHTTPClient ¶
func NewHTTPClient(formats strfmt.Registry) *EVESwaggerInterface
NewHTTPClient creates a new e v e swagger interface HTTP client.
func NewHTTPClientWithConfig ¶
func NewHTTPClientWithConfig(formats strfmt.Registry, cfg *TransportConfig) *EVESwaggerInterface
NewHTTPClientWithConfig creates a new e v e swagger interface HTTP client, using a customizable transport config.
func (*EVESwaggerInterface) SetTransport ¶
func (c *EVESwaggerInterface) SetTransport(transport runtime.ClientTransport)
SetTransport changes the transport on the client and all its subresources
type TransportConfig ¶
TransportConfig contains the transport related info, found in the meta section of the spec file.
func DefaultTransportConfig ¶
func DefaultTransportConfig() *TransportConfig
DefaultTransportConfig creates a TransportConfig with the default settings taken from the meta section of the spec file.
func (*TransportConfig) WithBasePath ¶
func (cfg *TransportConfig) WithBasePath(basePath string) *TransportConfig
WithBasePath overrides the default basePath, provided by the meta section of the spec file.
func (*TransportConfig) WithHost ¶
func (cfg *TransportConfig) WithHost(host string) *TransportConfig
WithHost overrides the default host, provided by the meta section of the spec file.
func (*TransportConfig) WithSchemes ¶
func (cfg *TransportConfig) WithSchemes(schemes []string) *TransportConfig
WithSchemes overrides the default schemes, provided by the meta section of the spec file.