Documentation ¶
Index ¶
- Constants
- Variables
- func NewDateTime(t time.Time) strfmt.DateTime
- type JusticeMatch2Service
- func New(transport runtime.ClientTransport, runtime *httptransport.Runtime, ...) *JusticeMatch2Service
- func NewClientWithBasePath(url string, endpoint string) *JusticeMatch2Service
- func NewHTTPClient(formats strfmt.Registry) *JusticeMatch2Service
- func NewHTTPClientWithConfig(formats strfmt.Registry, cfg *TransportConfig) *JusticeMatch2Service
- type TransportConfig
Constants ¶
const ( // DefaultHost is the default Host // found in Meta (info) section of spec file DefaultHost string = "demo.accelbyte.io" // DefaultBasePath is the default BasePath // found in Meta (info) section of spec file DefaultBasePath string = "/" )
Variables ¶
var Default = NewHTTPClient(nil)
Default justice match2 service HTTP client.
var DefaultSchemes = []string{"https"}
DefaultSchemes are the default schemes found in Meta (info) section of spec file
Functions ¶
Types ¶
type JusticeMatch2Service ¶
type JusticeMatch2Service struct { Backfill backfill.ClientService MatchFunctions match_functions.ClientService MatchPools match_pools.ClientService MatchTickets match_tickets.ClientService Operations operations.ClientService RuleSets rule_sets.ClientService Runtime *httptransport.Runtime Transport runtime.ClientTransport }
JusticeMatch2Service is a client for justice match2 service
func New ¶
func New(transport runtime.ClientTransport, runtime *httptransport.Runtime, formats strfmt.Registry) *JusticeMatch2Service
New creates a new justice match2 service client
func NewClientWithBasePath ¶
func NewClientWithBasePath(url string, endpoint string) *JusticeMatch2Service
func NewHTTPClient ¶
func NewHTTPClient(formats strfmt.Registry) *JusticeMatch2Service
NewHTTPClient creates a new justice match2 service HTTP client.
func NewHTTPClientWithConfig ¶
func NewHTTPClientWithConfig(formats strfmt.Registry, cfg *TransportConfig) *JusticeMatch2Service
NewHTTPClientWithConfig creates a new justice match2 service HTTP client, using a customizable transport config.
func (*JusticeMatch2Service) SetTransport ¶
func (c *JusticeMatch2Service) 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.