143 lines
4.0 KiB
Go
143 lines
4.0 KiB
Go
// Code generated by go-swagger; DO NOT EDIT.
|
|
|
|
// All Code Copyright(c) 2018-2020 by Taxnexus, Inc.
|
|
// All rights reserved worldwide.
|
|
// Proprietary product; unlicensed use is not allowed
|
|
|
|
package tax
|
|
|
|
// This file was generated by the swagger tool.
|
|
// Editing this file might prove futile when you re-run the swagger generate command
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
"time"
|
|
|
|
"github.com/go-openapi/errors"
|
|
"github.com/go-openapi/runtime"
|
|
cr "github.com/go-openapi/runtime/client"
|
|
"github.com/go-openapi/strfmt"
|
|
|
|
"code.tnxs.net/taxnexus/lib/api/ops/ops_models"
|
|
)
|
|
|
|
// NewPostTaxesPosParams creates a new PostTaxesPosParams object
|
|
// with the default values initialized.
|
|
func NewPostTaxesPosParams() *PostTaxesPosParams {
|
|
var ()
|
|
return &PostTaxesPosParams{
|
|
|
|
timeout: cr.DefaultTimeout,
|
|
}
|
|
}
|
|
|
|
// NewPostTaxesPosParamsWithTimeout creates a new PostTaxesPosParams object
|
|
// with the default values initialized, and the ability to set a timeout on a request
|
|
func NewPostTaxesPosParamsWithTimeout(timeout time.Duration) *PostTaxesPosParams {
|
|
var ()
|
|
return &PostTaxesPosParams{
|
|
|
|
timeout: timeout,
|
|
}
|
|
}
|
|
|
|
// NewPostTaxesPosParamsWithContext creates a new PostTaxesPosParams object
|
|
// with the default values initialized, and the ability to set a context for a request
|
|
func NewPostTaxesPosParamsWithContext(ctx context.Context) *PostTaxesPosParams {
|
|
var ()
|
|
return &PostTaxesPosParams{
|
|
|
|
Context: ctx,
|
|
}
|
|
}
|
|
|
|
// NewPostTaxesPosParamsWithHTTPClient creates a new PostTaxesPosParams object
|
|
// with the default values initialized, and the ability to set a custom HTTPClient for a request
|
|
func NewPostTaxesPosParamsWithHTTPClient(client *http.Client) *PostTaxesPosParams {
|
|
var ()
|
|
return &PostTaxesPosParams{
|
|
HTTPClient: client,
|
|
}
|
|
}
|
|
|
|
/*PostTaxesPosParams contains all the parameters to send to the API endpoint
|
|
for the post taxes pos operation typically these are written to a http.Request
|
|
*/
|
|
type PostTaxesPosParams struct {
|
|
|
|
/*PurchaseOrderRequest
|
|
A request with an array of Purchase Order Objects
|
|
|
|
*/
|
|
PurchaseOrderRequest *ops_models.PurchaseOrderRequest
|
|
|
|
timeout time.Duration
|
|
Context context.Context
|
|
HTTPClient *http.Client
|
|
}
|
|
|
|
// WithTimeout adds the timeout to the post taxes pos params
|
|
func (o *PostTaxesPosParams) WithTimeout(timeout time.Duration) *PostTaxesPosParams {
|
|
o.SetTimeout(timeout)
|
|
return o
|
|
}
|
|
|
|
// SetTimeout adds the timeout to the post taxes pos params
|
|
func (o *PostTaxesPosParams) SetTimeout(timeout time.Duration) {
|
|
o.timeout = timeout
|
|
}
|
|
|
|
// WithContext adds the context to the post taxes pos params
|
|
func (o *PostTaxesPosParams) WithContext(ctx context.Context) *PostTaxesPosParams {
|
|
o.SetContext(ctx)
|
|
return o
|
|
}
|
|
|
|
// SetContext adds the context to the post taxes pos params
|
|
func (o *PostTaxesPosParams) SetContext(ctx context.Context) {
|
|
o.Context = ctx
|
|
}
|
|
|
|
// WithHTTPClient adds the HTTPClient to the post taxes pos params
|
|
func (o *PostTaxesPosParams) WithHTTPClient(client *http.Client) *PostTaxesPosParams {
|
|
o.SetHTTPClient(client)
|
|
return o
|
|
}
|
|
|
|
// SetHTTPClient adds the HTTPClient to the post taxes pos params
|
|
func (o *PostTaxesPosParams) SetHTTPClient(client *http.Client) {
|
|
o.HTTPClient = client
|
|
}
|
|
|
|
// WithPurchaseOrderRequest adds the purchaseOrderRequest to the post taxes pos params
|
|
func (o *PostTaxesPosParams) WithPurchaseOrderRequest(purchaseOrderRequest *ops_models.PurchaseOrderRequest) *PostTaxesPosParams {
|
|
o.SetPurchaseOrderRequest(purchaseOrderRequest)
|
|
return o
|
|
}
|
|
|
|
// SetPurchaseOrderRequest adds the purchaseOrderRequest to the post taxes pos params
|
|
func (o *PostTaxesPosParams) SetPurchaseOrderRequest(purchaseOrderRequest *ops_models.PurchaseOrderRequest) {
|
|
o.PurchaseOrderRequest = purchaseOrderRequest
|
|
}
|
|
|
|
// WriteToRequest writes these params to a swagger request
|
|
func (o *PostTaxesPosParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
|
|
|
|
if err := r.SetTimeout(o.timeout); err != nil {
|
|
return err
|
|
}
|
|
var res []error
|
|
|
|
if o.PurchaseOrderRequest != nil {
|
|
if err := r.SetBodyParam(o.PurchaseOrderRequest); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|