// 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 strains // 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/metrc-gw/metrc_gw_models" ) // NewPutStrainsParams creates a new PutStrainsParams object // with the default values initialized. func NewPutStrainsParams() *PutStrainsParams { var () return &PutStrainsParams{ timeout: cr.DefaultTimeout, } } // NewPutStrainsParamsWithTimeout creates a new PutStrainsParams object // with the default values initialized, and the ability to set a timeout on a request func NewPutStrainsParamsWithTimeout(timeout time.Duration) *PutStrainsParams { var () return &PutStrainsParams{ timeout: timeout, } } // NewPutStrainsParamsWithContext creates a new PutStrainsParams object // with the default values initialized, and the ability to set a context for a request func NewPutStrainsParamsWithContext(ctx context.Context) *PutStrainsParams { var () return &PutStrainsParams{ Context: ctx, } } // NewPutStrainsParamsWithHTTPClient creates a new PutStrainsParams object // with the default values initialized, and the ability to set a custom HTTPClient for a request func NewPutStrainsParamsWithHTTPClient(client *http.Client) *PutStrainsParams { var () return &PutStrainsParams{ HTTPClient: client, } } /*PutStrainsParams contains all the parameters to send to the API endpoint for the put strains operation typically these are written to a http.Request */ type PutStrainsParams struct { /*StrainRequest The Existing Strains with Ids */ StrainRequest *metrc_gw_models.StrainRequest timeout time.Duration Context context.Context HTTPClient *http.Client } // WithTimeout adds the timeout to the put strains params func (o *PutStrainsParams) WithTimeout(timeout time.Duration) *PutStrainsParams { o.SetTimeout(timeout) return o } // SetTimeout adds the timeout to the put strains params func (o *PutStrainsParams) SetTimeout(timeout time.Duration) { o.timeout = timeout } // WithContext adds the context to the put strains params func (o *PutStrainsParams) WithContext(ctx context.Context) *PutStrainsParams { o.SetContext(ctx) return o } // SetContext adds the context to the put strains params func (o *PutStrainsParams) SetContext(ctx context.Context) { o.Context = ctx } // WithHTTPClient adds the HTTPClient to the put strains params func (o *PutStrainsParams) WithHTTPClient(client *http.Client) *PutStrainsParams { o.SetHTTPClient(client) return o } // SetHTTPClient adds the HTTPClient to the put strains params func (o *PutStrainsParams) SetHTTPClient(client *http.Client) { o.HTTPClient = client } // WithStrainRequest adds the strainRequest to the put strains params func (o *PutStrainsParams) WithStrainRequest(strainRequest *metrc_gw_models.StrainRequest) *PutStrainsParams { o.SetStrainRequest(strainRequest) return o } // SetStrainRequest adds the strainRequest to the put strains params func (o *PutStrainsParams) SetStrainRequest(strainRequest *metrc_gw_models.StrainRequest) { o.StrainRequest = strainRequest } // WriteToRequest writes these params to a swagger request func (o *PutStrainsParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error { if err := r.SetTimeout(o.timeout); err != nil { return err } var res []error if o.StrainRequest != nil { if err := r.SetBodyParam(o.StrainRequest); err != nil { return err } } if len(res) > 0 { return errors.CompositeValidationError(res...) } return nil }