// 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" "github.com/go-openapi/swag" ) // NewDeleteStrainParams creates a new DeleteStrainParams object // with the default values initialized. func NewDeleteStrainParams() *DeleteStrainParams { var () return &DeleteStrainParams{ timeout: cr.DefaultTimeout, } } // NewDeleteStrainParamsWithTimeout creates a new DeleteStrainParams object // with the default values initialized, and the ability to set a timeout on a request func NewDeleteStrainParamsWithTimeout(timeout time.Duration) *DeleteStrainParams { var () return &DeleteStrainParams{ timeout: timeout, } } // NewDeleteStrainParamsWithContext creates a new DeleteStrainParams object // with the default values initialized, and the ability to set a context for a request func NewDeleteStrainParamsWithContext(ctx context.Context) *DeleteStrainParams { var () return &DeleteStrainParams{ Context: ctx, } } // NewDeleteStrainParamsWithHTTPClient creates a new DeleteStrainParams object // with the default values initialized, and the ability to set a custom HTTPClient for a request func NewDeleteStrainParamsWithHTTPClient(client *http.Client) *DeleteStrainParams { var () return &DeleteStrainParams{ HTTPClient: client, } } /*DeleteStrainParams contains all the parameters to send to the API endpoint for the delete strain operation typically these are written to a http.Request */ type DeleteStrainParams struct { /*ItemID The Item Number */ ItemID float64 /*License The Licnese Number for the query */ License string /*Reseller The METRC Reseller Key */ Reseller string /*State The 2-character State Code */ State string /*User The METRC User Key */ User string timeout time.Duration Context context.Context HTTPClient *http.Client } // WithTimeout adds the timeout to the delete strain params func (o *DeleteStrainParams) WithTimeout(timeout time.Duration) *DeleteStrainParams { o.SetTimeout(timeout) return o } // SetTimeout adds the timeout to the delete strain params func (o *DeleteStrainParams) SetTimeout(timeout time.Duration) { o.timeout = timeout } // WithContext adds the context to the delete strain params func (o *DeleteStrainParams) WithContext(ctx context.Context) *DeleteStrainParams { o.SetContext(ctx) return o } // SetContext adds the context to the delete strain params func (o *DeleteStrainParams) SetContext(ctx context.Context) { o.Context = ctx } // WithHTTPClient adds the HTTPClient to the delete strain params func (o *DeleteStrainParams) WithHTTPClient(client *http.Client) *DeleteStrainParams { o.SetHTTPClient(client) return o } // SetHTTPClient adds the HTTPClient to the delete strain params func (o *DeleteStrainParams) SetHTTPClient(client *http.Client) { o.HTTPClient = client } // WithItemID adds the itemID to the delete strain params func (o *DeleteStrainParams) WithItemID(itemID float64) *DeleteStrainParams { o.SetItemID(itemID) return o } // SetItemID adds the itemId to the delete strain params func (o *DeleteStrainParams) SetItemID(itemID float64) { o.ItemID = itemID } // WithLicense adds the license to the delete strain params func (o *DeleteStrainParams) WithLicense(license string) *DeleteStrainParams { o.SetLicense(license) return o } // SetLicense adds the license to the delete strain params func (o *DeleteStrainParams) SetLicense(license string) { o.License = license } // WithReseller adds the reseller to the delete strain params func (o *DeleteStrainParams) WithReseller(reseller string) *DeleteStrainParams { o.SetReseller(reseller) return o } // SetReseller adds the reseller to the delete strain params func (o *DeleteStrainParams) SetReseller(reseller string) { o.Reseller = reseller } // WithState adds the state to the delete strain params func (o *DeleteStrainParams) WithState(state string) *DeleteStrainParams { o.SetState(state) return o } // SetState adds the state to the delete strain params func (o *DeleteStrainParams) SetState(state string) { o.State = state } // WithUser adds the user to the delete strain params func (o *DeleteStrainParams) WithUser(user string) *DeleteStrainParams { o.SetUser(user) return o } // SetUser adds the user to the delete strain params func (o *DeleteStrainParams) SetUser(user string) { o.User = user } // WriteToRequest writes these params to a swagger request func (o *DeleteStrainParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error { if err := r.SetTimeout(o.timeout); err != nil { return err } var res []error // query param itemId qrItemID := o.ItemID qItemID := swag.FormatFloat64(qrItemID) if qItemID != "" { if err := r.SetQueryParam("itemId", qItemID); err != nil { return err } } // query param license qrLicense := o.License qLicense := qrLicense if qLicense != "" { if err := r.SetQueryParam("license", qLicense); err != nil { return err } } // query param reseller qrReseller := o.Reseller qReseller := qrReseller if qReseller != "" { if err := r.SetQueryParam("reseller", qReseller); err != nil { return err } } // query param state qrState := o.State qState := qrState if qState != "" { if err := r.SetQueryParam("state", qState); err != nil { return err } } // query param user qrUser := o.User qUser := qrUser if qUser != "" { if err := r.SetQueryParam("user", qUser); err != nil { return err } } if len(res) > 0 { return errors.CompositeValidationError(res...) } return nil }