lib/api/ops/ops_client/tax/post_taxes_pos_parameters.go

156 lines
4.6 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 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 timeout for this client.
//
// Default values are not hydrated, since defaults are normally applied by the API server side.
//
// To enforce default values in parameter, use SetDefaults or WithDefaults.
func NewPostTaxesPosParams() *PostTaxesPosParams {
return &PostTaxesPosParams{
timeout: cr.DefaultTimeout,
}
}
// NewPostTaxesPosParamsWithTimeout creates a new PostTaxesPosParams object
// with the ability to set a timeout on a request.
func NewPostTaxesPosParamsWithTimeout(timeout time.Duration) *PostTaxesPosParams {
return &PostTaxesPosParams{
timeout: timeout,
}
}
// NewPostTaxesPosParamsWithContext creates a new PostTaxesPosParams object
// with the ability to set a context for a request.
func NewPostTaxesPosParamsWithContext(ctx context.Context) *PostTaxesPosParams {
return &PostTaxesPosParams{
Context: ctx,
}
}
// NewPostTaxesPosParamsWithHTTPClient creates a new PostTaxesPosParams object
// with the ability to set a custom HTTPClient for a request.
func NewPostTaxesPosParamsWithHTTPClient(client *http.Client) *PostTaxesPosParams {
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
}
// WithDefaults hydrates default values in the post taxes pos params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *PostTaxesPosParams) WithDefaults() *PostTaxesPosParams {
o.SetDefaults()
return o
}
// SetDefaults hydrates default values in the post taxes pos params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *PostTaxesPosParams) SetDefaults() {
// no default values defined for this parameter
}
// 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
}