mirror of https://github.com/vernonkeenan/lib
259 lines
8.4 KiB
Go
259 lines
8.4 KiB
Go
|
// Code generated by go-swagger; DO NOT EDIT.
|
||
|
|
||
|
// (c) 2012-2020 by Telnexus LLC
|
||
|
// All rights reserved worldwide.
|
||
|
// Proprietary product; unlicensed use is not allowed
|
||
|
|
||
|
package accounts
|
||
|
|
||
|
// This file was generated by the swagger tool.
|
||
|
// Editing this file might prove futile when you re-run the swagger generate command
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
"github.com/go-openapi/runtime"
|
||
|
"github.com/go-openapi/strfmt"
|
||
|
)
|
||
|
|
||
|
// New creates a new accounts API client.
|
||
|
func New(transport runtime.ClientTransport, formats strfmt.Registry) ClientService {
|
||
|
return &Client{transport: transport, formats: formats}
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
Client for accounts API
|
||
|
*/
|
||
|
type Client struct {
|
||
|
transport runtime.ClientTransport
|
||
|
formats strfmt.Registry
|
||
|
}
|
||
|
|
||
|
// ClientOption is the option for Client methods
|
||
|
type ClientOption func(*runtime.ClientOperation)
|
||
|
|
||
|
// ClientService is the interface for Client methods
|
||
|
type ClientService interface {
|
||
|
DeleteAccount(params *DeleteAccountParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteAccountOK, error)
|
||
|
|
||
|
GetAccounts(params *GetAccountsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetAccountsOK, error)
|
||
|
|
||
|
GetAccountsObservable(params *GetAccountsObservableParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetAccountsObservableOK, error)
|
||
|
|
||
|
PostAccounts(params *PostAccountsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*PostAccountsOK, error)
|
||
|
|
||
|
PutAccount(params *PutAccountParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*PutAccountOK, error)
|
||
|
|
||
|
SetTransport(transport runtime.ClientTransport)
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
DeleteAccount deletes an account
|
||
|
|
||
|
Delete Telnexus Account record
|
||
|
*/
|
||
|
func (a *Client) DeleteAccount(params *DeleteAccountParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteAccountOK, error) {
|
||
|
// TODO: Validate the params before sending
|
||
|
if params == nil {
|
||
|
params = NewDeleteAccountParams()
|
||
|
}
|
||
|
op := &runtime.ClientOperation{
|
||
|
ID: "deleteAccount",
|
||
|
Method: "DELETE",
|
||
|
PathPattern: "/accounts",
|
||
|
ProducesMediaTypes: []string{"application/json"},
|
||
|
ConsumesMediaTypes: []string{"application/json"},
|
||
|
Schemes: []string{"http"},
|
||
|
Params: params,
|
||
|
Reader: &DeleteAccountReader{formats: a.formats},
|
||
|
AuthInfo: authInfo,
|
||
|
Context: params.Context,
|
||
|
Client: params.HTTPClient,
|
||
|
}
|
||
|
for _, opt := range opts {
|
||
|
opt(op)
|
||
|
}
|
||
|
|
||
|
result, err := a.transport.Submit(op)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
success, ok := result.(*DeleteAccountOK)
|
||
|
if ok {
|
||
|
return success, nil
|
||
|
}
|
||
|
// unexpected success response
|
||
|
// safeguard: normally, absent a default response, unknown success responses return an error above: so this is a codegen issue
|
||
|
msg := fmt.Sprintf("unexpected success response for deleteAccount: API contract not enforced by server. Client expected to get an error, but got: %T", result)
|
||
|
panic(msg)
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
GetAccounts gets a list of accounts
|
||
|
|
||
|
Return a list of all available Accounts
|
||
|
*/
|
||
|
func (a *Client) GetAccounts(params *GetAccountsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetAccountsOK, error) {
|
||
|
// TODO: Validate the params before sending
|
||
|
if params == nil {
|
||
|
params = NewGetAccountsParams()
|
||
|
}
|
||
|
op := &runtime.ClientOperation{
|
||
|
ID: "getAccounts",
|
||
|
Method: "GET",
|
||
|
PathPattern: "/accounts",
|
||
|
ProducesMediaTypes: []string{"application/json"},
|
||
|
ConsumesMediaTypes: []string{"application/json"},
|
||
|
Schemes: []string{"http"},
|
||
|
Params: params,
|
||
|
Reader: &GetAccountsReader{formats: a.formats},
|
||
|
AuthInfo: authInfo,
|
||
|
Context: params.Context,
|
||
|
Client: params.HTTPClient,
|
||
|
}
|
||
|
for _, opt := range opts {
|
||
|
opt(op)
|
||
|
}
|
||
|
|
||
|
result, err := a.transport.Submit(op)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
success, ok := result.(*GetAccountsOK)
|
||
|
if ok {
|
||
|
return success, nil
|
||
|
}
|
||
|
// unexpected success response
|
||
|
// safeguard: normally, absent a default response, unknown success responses return an error above: so this is a codegen issue
|
||
|
msg := fmt.Sprintf("unexpected success response for getAccounts: API contract not enforced by server. Client expected to get an error, but got: %T", result)
|
||
|
panic(msg)
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
GetAccountsObservable gets telnexus accounts in an observable array
|
||
|
|
||
|
A list of accounts in a simple JSON array
|
||
|
*/
|
||
|
func (a *Client) GetAccountsObservable(params *GetAccountsObservableParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetAccountsObservableOK, error) {
|
||
|
// TODO: Validate the params before sending
|
||
|
if params == nil {
|
||
|
params = NewGetAccountsObservableParams()
|
||
|
}
|
||
|
op := &runtime.ClientOperation{
|
||
|
ID: "getAccountsObservable",
|
||
|
Method: "GET",
|
||
|
PathPattern: "/accounts/observable",
|
||
|
ProducesMediaTypes: []string{"application/json"},
|
||
|
ConsumesMediaTypes: []string{"application/json"},
|
||
|
Schemes: []string{"http"},
|
||
|
Params: params,
|
||
|
Reader: &GetAccountsObservableReader{formats: a.formats},
|
||
|
AuthInfo: authInfo,
|
||
|
Context: params.Context,
|
||
|
Client: params.HTTPClient,
|
||
|
}
|
||
|
for _, opt := range opts {
|
||
|
opt(op)
|
||
|
}
|
||
|
|
||
|
result, err := a.transport.Submit(op)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
success, ok := result.(*GetAccountsObservableOK)
|
||
|
if ok {
|
||
|
return success, nil
|
||
|
}
|
||
|
// unexpected success response
|
||
|
// safeguard: normally, absent a default response, unknown success responses return an error above: so this is a codegen issue
|
||
|
msg := fmt.Sprintf("unexpected success response for getAccountsObservable: API contract not enforced by server. Client expected to get an error, but got: %T", result)
|
||
|
panic(msg)
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
PostAccounts adds a new account to telnexus
|
||
|
|
||
|
Account record to be added
|
||
|
*/
|
||
|
func (a *Client) PostAccounts(params *PostAccountsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*PostAccountsOK, error) {
|
||
|
// TODO: Validate the params before sending
|
||
|
if params == nil {
|
||
|
params = NewPostAccountsParams()
|
||
|
}
|
||
|
op := &runtime.ClientOperation{
|
||
|
ID: "postAccounts",
|
||
|
Method: "POST",
|
||
|
PathPattern: "/accounts",
|
||
|
ProducesMediaTypes: []string{"application/json"},
|
||
|
ConsumesMediaTypes: []string{"application/json"},
|
||
|
Schemes: []string{"http"},
|
||
|
Params: params,
|
||
|
Reader: &PostAccountsReader{formats: a.formats},
|
||
|
AuthInfo: authInfo,
|
||
|
Context: params.Context,
|
||
|
Client: params.HTTPClient,
|
||
|
}
|
||
|
for _, opt := range opts {
|
||
|
opt(op)
|
||
|
}
|
||
|
|
||
|
result, err := a.transport.Submit(op)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
success, ok := result.(*PostAccountsOK)
|
||
|
if ok {
|
||
|
return success, nil
|
||
|
}
|
||
|
// unexpected success response
|
||
|
// safeguard: normally, absent a default response, unknown success responses return an error above: so this is a codegen issue
|
||
|
msg := fmt.Sprintf("unexpected success response for postAccounts: API contract not enforced by server. Client expected to get an error, but got: %T", result)
|
||
|
panic(msg)
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
PutAccount updates a single account
|
||
|
|
||
|
Update a single account specified by accountId
|
||
|
*/
|
||
|
func (a *Client) PutAccount(params *PutAccountParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*PutAccountOK, error) {
|
||
|
// TODO: Validate the params before sending
|
||
|
if params == nil {
|
||
|
params = NewPutAccountParams()
|
||
|
}
|
||
|
op := &runtime.ClientOperation{
|
||
|
ID: "putAccount",
|
||
|
Method: "PUT",
|
||
|
PathPattern: "/accounts",
|
||
|
ProducesMediaTypes: []string{"application/json"},
|
||
|
ConsumesMediaTypes: []string{"application/json"},
|
||
|
Schemes: []string{"http"},
|
||
|
Params: params,
|
||
|
Reader: &PutAccountReader{formats: a.formats},
|
||
|
AuthInfo: authInfo,
|
||
|
Context: params.Context,
|
||
|
Client: params.HTTPClient,
|
||
|
}
|
||
|
for _, opt := range opts {
|
||
|
opt(op)
|
||
|
}
|
||
|
|
||
|
result, err := a.transport.Submit(op)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
success, ok := result.(*PutAccountOK)
|
||
|
if ok {
|
||
|
return success, nil
|
||
|
}
|
||
|
// unexpected success response
|
||
|
// safeguard: normally, absent a default response, unknown success responses return an error above: so this is a codegen issue
|
||
|
msg := fmt.Sprintf("unexpected success response for putAccount: API contract not enforced by server. Client expected to get an error, but got: %T", result)
|
||
|
panic(msg)
|
||
|
}
|
||
|
|
||
|
// SetTransport changes the transport on the client
|
||
|
func (a *Client) SetTransport(transport runtime.ClientTransport) {
|
||
|
a.transport = transport
|
||
|
}
|