lib/api/research/research_client/research_client.go

167 lines
5.5 KiB
Go

// Code generated by go-swagger; DO NOT EDIT.
// (c) 2012-2020 by Taxnexus, Inc.
// All rights reserved worldwide.
// Proprietary product; unlicensed use is not allowed
package research_client
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"github.com/go-openapi/runtime"
httptransport "github.com/go-openapi/runtime/client"
"github.com/go-openapi/strfmt"
"code.tnxs.net/vernonkeenan/lib/api/research/research_client/company_categories"
"code.tnxs.net/vernonkeenan/lib/api/research/research_client/company_products"
"code.tnxs.net/vernonkeenan/lib/api/research/research_client/company_services"
"code.tnxs.net/vernonkeenan/lib/api/research/research_client/factors"
"code.tnxs.net/vernonkeenan/lib/api/research/research_client/financial_statements"
"code.tnxs.net/vernonkeenan/lib/api/research/research_client/industry"
"code.tnxs.net/vernonkeenan/lib/api/research/research_client/industry_companies"
"code.tnxs.net/vernonkeenan/lib/api/research/research_client/industry_products"
"code.tnxs.net/vernonkeenan/lib/api/research/research_client/industry_services"
"code.tnxs.net/vernonkeenan/lib/api/research/research_client/observations"
"code.tnxs.net/vernonkeenan/lib/api/research/research_client/topics"
)
// Default research HTTP client.
var Default = NewHTTPClient(nil)
const (
// DefaultHost is the default Host
// found in Meta (info) section of spec file
DefaultHost string = "research.vernonkeenan.com:8080"
// DefaultBasePath is the default BasePath
// found in Meta (info) section of spec file
DefaultBasePath string = "/v1"
)
// DefaultSchemes are the default schemes found in Meta (info) section of spec file
var DefaultSchemes = []string{"http"}
// NewHTTPClient creates a new research HTTP client.
func NewHTTPClient(formats strfmt.Registry) *Research {
return NewHTTPClientWithConfig(formats, nil)
}
// NewHTTPClientWithConfig creates a new research HTTP client,
// using a customizable transport config.
func NewHTTPClientWithConfig(formats strfmt.Registry, cfg *TransportConfig) *Research {
// ensure nullable parameters have default
if cfg == nil {
cfg = DefaultTransportConfig()
}
// create transport and client
transport := httptransport.New(cfg.Host, cfg.BasePath, cfg.Schemes)
return New(transport, formats)
}
// New creates a new research client
func New(transport runtime.ClientTransport, formats strfmt.Registry) *Research {
// ensure nullable parameters have default
if formats == nil {
formats = strfmt.Default
}
cli := new(Research)
cli.Transport = transport
cli.CompanyCategories = company_categories.New(transport, formats)
cli.CompanyProducts = company_products.New(transport, formats)
cli.CompanyServices = company_services.New(transport, formats)
cli.Factors = factors.New(transport, formats)
cli.FinancialStatements = financial_statements.New(transport, formats)
cli.Industry = industry.New(transport, formats)
cli.IndustryCompanies = industry_companies.New(transport, formats)
cli.IndustryProducts = industry_products.New(transport, formats)
cli.IndustryServices = industry_services.New(transport, formats)
cli.Observations = observations.New(transport, formats)
cli.Topics = topics.New(transport, formats)
return cli
}
// DefaultTransportConfig creates a TransportConfig with the
// default settings taken from the meta section of the spec file.
func DefaultTransportConfig() *TransportConfig {
return &TransportConfig{
Host: DefaultHost,
BasePath: DefaultBasePath,
Schemes: DefaultSchemes,
}
}
// TransportConfig contains the transport related info,
// found in the meta section of the spec file.
type TransportConfig struct {
Host string
BasePath string
Schemes []string
}
// WithHost overrides the default host,
// provided by the meta section of the spec file.
func (cfg *TransportConfig) WithHost(host string) *TransportConfig {
cfg.Host = host
return cfg
}
// WithBasePath overrides the default basePath,
// provided by the meta section of the spec file.
func (cfg *TransportConfig) WithBasePath(basePath string) *TransportConfig {
cfg.BasePath = basePath
return cfg
}
// WithSchemes overrides the default schemes,
// provided by the meta section of the spec file.
func (cfg *TransportConfig) WithSchemes(schemes []string) *TransportConfig {
cfg.Schemes = schemes
return cfg
}
// Research is a client for research
type Research struct {
CompanyCategories company_categories.ClientService
CompanyProducts company_products.ClientService
CompanyServices company_services.ClientService
Factors factors.ClientService
FinancialStatements financial_statements.ClientService
Industry industry.ClientService
IndustryCompanies industry_companies.ClientService
IndustryProducts industry_products.ClientService
IndustryServices industry_services.ClientService
Observations observations.ClientService
Topics topics.ClientService
Transport runtime.ClientTransport
}
// SetTransport changes the transport on the client and all its subresources
func (c *Research) SetTransport(transport runtime.ClientTransport) {
c.Transport = transport
c.CompanyCategories.SetTransport(transport)
c.CompanyProducts.SetTransport(transport)
c.CompanyServices.SetTransport(transport)
c.Factors.SetTransport(transport)
c.FinancialStatements.SetTransport(transport)
c.Industry.SetTransport(transport)
c.IndustryCompanies.SetTransport(transport)
c.IndustryProducts.SetTransport(transport)
c.IndustryServices.SetTransport(transport)
c.Observations.SetTransport(transport)
c.Topics.SetTransport(transport)
}