lib/api/ops/ops_client/cash_receipt/cash_receipt_client.go

216 lines
7.1 KiB
Go

// Code generated by go-swagger; DO NOT EDIT.
// All Code Copyright(c) 2018-2021 by Taxnexus, Inc.
// All rights reserved worldwide.
// Proprietary product; unlicensed use is not allowed
package cash_receipt
// 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 cash receipt API client.
func New(transport runtime.ClientTransport, formats strfmt.Registry) ClientService {
return &Client{transport: transport, formats: formats}
}
/*
Client for cash receipt 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 {
DeleteCashReceipt(params *DeleteCashReceiptParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteCashReceiptOK, error)
GetCashReceipts(params *GetCashReceiptsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetCashReceiptsOK, error)
PostCashReceipts(params *PostCashReceiptsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*PostCashReceiptsOK, error)
PutCashReceipts(params *PutCashReceiptsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*PutCashReceiptsOK, error)
SetTransport(transport runtime.ClientTransport)
}
/*
DeleteCashReceipt deletes a cash receipt
Delete cash receipt by ID
*/
func (a *Client) DeleteCashReceipt(params *DeleteCashReceiptParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteCashReceiptOK, error) {
// TODO: Validate the params before sending
if params == nil {
params = NewDeleteCashReceiptParams()
}
op := &runtime.ClientOperation{
ID: "deleteCashReceipt",
Method: "DELETE",
PathPattern: "/cashreceipts",
ProducesMediaTypes: []string{"application/json"},
ConsumesMediaTypes: []string{"application/json"},
Schemes: []string{"http"},
Params: params,
Reader: &DeleteCashReceiptReader{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.(*DeleteCashReceiptOK)
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 deleteCashReceipt: API contract not enforced by server. Client expected to get an error, but got: %T", result)
panic(msg)
}
/*
GetCashReceipts gets a list of cash receipts
Return a list of available Taxnexus Cash Receipts
*/
func (a *Client) GetCashReceipts(params *GetCashReceiptsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetCashReceiptsOK, error) {
// TODO: Validate the params before sending
if params == nil {
params = NewGetCashReceiptsParams()
}
op := &runtime.ClientOperation{
ID: "getCashReceipts",
Method: "GET",
PathPattern: "/cashreceipts",
ProducesMediaTypes: []string{"application/json"},
ConsumesMediaTypes: []string{"application/json"},
Schemes: []string{"http"},
Params: params,
Reader: &GetCashReceiptsReader{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.(*GetCashReceiptsOK)
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 getCashReceipts: API contract not enforced by server. Client expected to get an error, but got: %T", result)
panic(msg)
}
/*
PostCashReceipts creates new cash receipts
Create New Cash Receipts
*/
func (a *Client) PostCashReceipts(params *PostCashReceiptsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*PostCashReceiptsOK, error) {
// TODO: Validate the params before sending
if params == nil {
params = NewPostCashReceiptsParams()
}
op := &runtime.ClientOperation{
ID: "postCashReceipts",
Method: "POST",
PathPattern: "/cashreceipts",
ProducesMediaTypes: []string{"application/json"},
ConsumesMediaTypes: []string{"application/json"},
Schemes: []string{"http"},
Params: params,
Reader: &PostCashReceiptsReader{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.(*PostCashReceiptsOK)
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 postCashReceipts: API contract not enforced by server. Client expected to get an error, but got: %T", result)
panic(msg)
}
/*
PutCashReceipts puts a list of cash receipts
Put a list of Cash Receipts
*/
func (a *Client) PutCashReceipts(params *PutCashReceiptsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*PutCashReceiptsOK, error) {
// TODO: Validate the params before sending
if params == nil {
params = NewPutCashReceiptsParams()
}
op := &runtime.ClientOperation{
ID: "putCashReceipts",
Method: "PUT",
PathPattern: "/cashreceipts",
ProducesMediaTypes: []string{"application/json"},
ConsumesMediaTypes: []string{"application/json"},
Schemes: []string{"http"},
Params: params,
Reader: &PutCashReceiptsReader{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.(*PutCashReceiptsOK)
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 putCashReceipts: 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
}