lib/api/members/members_client/members_client.go

116 lines
3.3 KiB
Go
Raw Normal View History

2021-07-31 03:05:02 +00:00
// Code generated by go-swagger; DO NOT EDIT.
2021-08-05 19:37:53 +00:00
// (c) 2012-2020 by Taxnexus, Inc.
2021-07-31 03:05:02 +00:00
// All rights reserved worldwide.
// Proprietary product; unlicensed use is not allowed
2023-03-28 17:47:34 +00:00
package members_client
2021-07-31 03:05:02 +00:00
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
2023-03-28 17:47:34 +00:00
"code.tnxs.net/vernonkeenan/lib/api/members/members_client/operations"
2021-07-31 03:05:02 +00:00
"github.com/go-openapi/runtime"
httptransport "github.com/go-openapi/runtime/client"
"github.com/go-openapi/strfmt"
)
2023-03-28 17:47:34 +00:00
// Default members HTTP client.
2021-07-31 03:05:02 +00:00
var Default = NewHTTPClient(nil)
const (
// DefaultHost is the default Host
// found in Meta (info) section of spec file
2023-03-28 17:47:34 +00:00
DefaultHost string = "members.vernonkeenan.com:8080"
2021-07-31 03:05:02 +00:00
// DefaultBasePath is the default BasePath
// found in Meta (info) section of spec file
2023-03-28 17:47:34 +00:00
DefaultBasePath string = "/v1"
2021-07-31 03:05:02 +00:00
)
// DefaultSchemes are the default schemes found in Meta (info) section of spec file
2023-03-28 17:47:34 +00:00
var DefaultSchemes = []string{"http"}
2021-07-31 03:05:02 +00:00
2023-03-28 17:47:34 +00:00
// NewHTTPClient creates a new members HTTP client.
func NewHTTPClient(formats strfmt.Registry) *Members {
2021-07-31 03:05:02 +00:00
return NewHTTPClientWithConfig(formats, nil)
}
2023-03-28 17:47:34 +00:00
// NewHTTPClientWithConfig creates a new members HTTP client,
2021-07-31 03:05:02 +00:00
// using a customizable transport config.
2023-03-28 17:47:34 +00:00
func NewHTTPClientWithConfig(formats strfmt.Registry, cfg *TransportConfig) *Members {
2021-07-31 03:05:02 +00:00
// 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)
}
2023-03-28 17:47:34 +00:00
// New creates a new members client
func New(transport runtime.ClientTransport, formats strfmt.Registry) *Members {
2021-07-31 03:05:02 +00:00
// ensure nullable parameters have default
if formats == nil {
formats = strfmt.Default
}
2023-03-28 17:47:34 +00:00
cli := new(Members)
2021-07-31 03:05:02 +00:00
cli.Transport = transport
2023-03-28 17:47:34 +00:00
cli.Operations = operations.New(transport, formats)
2021-07-31 03:05:02 +00:00
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
}
2023-03-28 17:47:34 +00:00
// Members is a client for members
type Members struct {
Operations operations.ClientService
2021-07-31 03:05:02 +00:00
Transport runtime.ClientTransport
}
// SetTransport changes the transport on the client and all its subresources
2023-03-28 17:47:34 +00:00
func (c *Members) SetTransport(transport runtime.ClientTransport) {
2021-07-31 03:05:02 +00:00
c.Transport = transport
2023-03-28 17:47:34 +00:00
c.Operations.SetTransport(transport)
2021-07-31 03:05:02 +00:00
}