// 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 stash_pdf // 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/stash/stash_models" ) // NewPostPdfsParams creates a new PostPdfsParams object // with the default values initialized. func NewPostPdfsParams() *PostPdfsParams { var () return &PostPdfsParams{ timeout: cr.DefaultTimeout, } } // NewPostPdfsParamsWithTimeout creates a new PostPdfsParams object // with the default values initialized, and the ability to set a timeout on a request func NewPostPdfsParamsWithTimeout(timeout time.Duration) *PostPdfsParams { var () return &PostPdfsParams{ timeout: timeout, } } // NewPostPdfsParamsWithContext creates a new PostPdfsParams object // with the default values initialized, and the ability to set a context for a request func NewPostPdfsParamsWithContext(ctx context.Context) *PostPdfsParams { var () return &PostPdfsParams{ Context: ctx, } } // NewPostPdfsParamsWithHTTPClient creates a new PostPdfsParams object // with the default values initialized, and the ability to set a custom HTTPClient for a request func NewPostPdfsParamsWithHTTPClient(client *http.Client) *PostPdfsParams { var () return &PostPdfsParams{ HTTPClient: client, } } /*PostPdfsParams contains all the parameters to send to the API endpoint for the post pdfs operation typically these are written to a http.Request */ type PostPdfsParams struct { /*PDFRequest An array of new PDF records */ PDFRequest *stash_models.PDFRequest timeout time.Duration Context context.Context HTTPClient *http.Client } // WithTimeout adds the timeout to the post pdfs params func (o *PostPdfsParams) WithTimeout(timeout time.Duration) *PostPdfsParams { o.SetTimeout(timeout) return o } // SetTimeout adds the timeout to the post pdfs params func (o *PostPdfsParams) SetTimeout(timeout time.Duration) { o.timeout = timeout } // WithContext adds the context to the post pdfs params func (o *PostPdfsParams) WithContext(ctx context.Context) *PostPdfsParams { o.SetContext(ctx) return o } // SetContext adds the context to the post pdfs params func (o *PostPdfsParams) SetContext(ctx context.Context) { o.Context = ctx } // WithHTTPClient adds the HTTPClient to the post pdfs params func (o *PostPdfsParams) WithHTTPClient(client *http.Client) *PostPdfsParams { o.SetHTTPClient(client) return o } // SetHTTPClient adds the HTTPClient to the post pdfs params func (o *PostPdfsParams) SetHTTPClient(client *http.Client) { o.HTTPClient = client } // WithPDFRequest adds the pDFRequest to the post pdfs params func (o *PostPdfsParams) WithPDFRequest(pDFRequest *stash_models.PDFRequest) *PostPdfsParams { o.SetPDFRequest(pDFRequest) return o } // SetPDFRequest adds the pDFRequest to the post pdfs params func (o *PostPdfsParams) SetPDFRequest(pDFRequest *stash_models.PDFRequest) { o.PDFRequest = pDFRequest } // WriteToRequest writes these params to a swagger request func (o *PostPdfsParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error { if err := r.SetTimeout(o.timeout); err != nil { return err } var res []error if o.PDFRequest != nil { if err := r.SetBodyParam(o.PDFRequest); err != nil { return err } } if len(res) > 0 { return errors.CompositeValidationError(res...) } return nil }