// 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" ) // NewPostStrainsParams creates a new PostStrainsParams object // with the default values initialized. func NewPostStrainsParams() *PostStrainsParams { var () return &PostStrainsParams{ timeout: cr.DefaultTimeout, } } // NewPostStrainsParamsWithTimeout creates a new PostStrainsParams object // with the default values initialized, and the ability to set a timeout on a request func NewPostStrainsParamsWithTimeout(timeout time.Duration) *PostStrainsParams { var () return &PostStrainsParams{ timeout: timeout, } } // NewPostStrainsParamsWithContext creates a new PostStrainsParams object // with the default values initialized, and the ability to set a context for a request func NewPostStrainsParamsWithContext(ctx context.Context) *PostStrainsParams { var () return &PostStrainsParams{ Context: ctx, } } // NewPostStrainsParamsWithHTTPClient creates a new PostStrainsParams object // with the default values initialized, and the ability to set a custom HTTPClient for a request func NewPostStrainsParamsWithHTTPClient(client *http.Client) *PostStrainsParams { var () return &PostStrainsParams{ HTTPClient: client, } } /*PostStrainsParams contains all the parameters to send to the API endpoint for the post strains operation typically these are written to a http.Request */ type PostStrainsParams struct { /*StrainRequest The New Strains */ StrainRequest *metrc_gw_models.StrainRequest timeout time.Duration Context context.Context HTTPClient *http.Client } // WithTimeout adds the timeout to the post strains params func (o *PostStrainsParams) WithTimeout(timeout time.Duration) *PostStrainsParams { o.SetTimeout(timeout) return o } // SetTimeout adds the timeout to the post strains params func (o *PostStrainsParams) SetTimeout(timeout time.Duration) { o.timeout = timeout } // WithContext adds the context to the post strains params func (o *PostStrainsParams) WithContext(ctx context.Context) *PostStrainsParams { o.SetContext(ctx) return o } // SetContext adds the context to the post strains params func (o *PostStrainsParams) SetContext(ctx context.Context) { o.Context = ctx } // WithHTTPClient adds the HTTPClient to the post strains params func (o *PostStrainsParams) WithHTTPClient(client *http.Client) *PostStrainsParams { o.SetHTTPClient(client) return o } // SetHTTPClient adds the HTTPClient to the post strains params func (o *PostStrainsParams) SetHTTPClient(client *http.Client) { o.HTTPClient = client } // WithStrainRequest adds the strainRequest to the post strains params func (o *PostStrainsParams) WithStrainRequest(strainRequest *metrc_gw_models.StrainRequest) *PostStrainsParams { o.SetStrainRequest(strainRequest) return o } // SetStrainRequest adds the strainRequest to the post strains params func (o *PostStrainsParams) SetStrainRequest(strainRequest *metrc_gw_models.StrainRequest) { o.StrainRequest = strainRequest } // WriteToRequest writes these params to a swagger request func (o *PostStrainsParams) 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 }