// 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 items // 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" ) // NewDeleteItemParams creates a new DeleteItemParams object // with the default values initialized. func NewDeleteItemParams() *DeleteItemParams { var () return &DeleteItemParams{ timeout: cr.DefaultTimeout, } } // NewDeleteItemParamsWithTimeout creates a new DeleteItemParams object // with the default values initialized, and the ability to set a timeout on a request func NewDeleteItemParamsWithTimeout(timeout time.Duration) *DeleteItemParams { var () return &DeleteItemParams{ timeout: timeout, } } // NewDeleteItemParamsWithContext creates a new DeleteItemParams object // with the default values initialized, and the ability to set a context for a request func NewDeleteItemParamsWithContext(ctx context.Context) *DeleteItemParams { var () return &DeleteItemParams{ Context: ctx, } } // NewDeleteItemParamsWithHTTPClient creates a new DeleteItemParams object // with the default values initialized, and the ability to set a custom HTTPClient for a request func NewDeleteItemParamsWithHTTPClient(client *http.Client) *DeleteItemParams { var () return &DeleteItemParams{ HTTPClient: client, } } /*DeleteItemParams contains all the parameters to send to the API endpoint for the delete item operation typically these are written to a http.Request */ type DeleteItemParams 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 item params func (o *DeleteItemParams) WithTimeout(timeout time.Duration) *DeleteItemParams { o.SetTimeout(timeout) return o } // SetTimeout adds the timeout to the delete item params func (o *DeleteItemParams) SetTimeout(timeout time.Duration) { o.timeout = timeout } // WithContext adds the context to the delete item params func (o *DeleteItemParams) WithContext(ctx context.Context) *DeleteItemParams { o.SetContext(ctx) return o } // SetContext adds the context to the delete item params func (o *DeleteItemParams) SetContext(ctx context.Context) { o.Context = ctx } // WithHTTPClient adds the HTTPClient to the delete item params func (o *DeleteItemParams) WithHTTPClient(client *http.Client) *DeleteItemParams { o.SetHTTPClient(client) return o } // SetHTTPClient adds the HTTPClient to the delete item params func (o *DeleteItemParams) SetHTTPClient(client *http.Client) { o.HTTPClient = client } // WithItemID adds the itemID to the delete item params func (o *DeleteItemParams) WithItemID(itemID float64) *DeleteItemParams { o.SetItemID(itemID) return o } // SetItemID adds the itemId to the delete item params func (o *DeleteItemParams) SetItemID(itemID float64) { o.ItemID = itemID } // WithLicense adds the license to the delete item params func (o *DeleteItemParams) WithLicense(license string) *DeleteItemParams { o.SetLicense(license) return o } // SetLicense adds the license to the delete item params func (o *DeleteItemParams) SetLicense(license string) { o.License = license } // WithReseller adds the reseller to the delete item params func (o *DeleteItemParams) WithReseller(reseller string) *DeleteItemParams { o.SetReseller(reseller) return o } // SetReseller adds the reseller to the delete item params func (o *DeleteItemParams) SetReseller(reseller string) { o.Reseller = reseller } // WithState adds the state to the delete item params func (o *DeleteItemParams) WithState(state string) *DeleteItemParams { o.SetState(state) return o } // SetState adds the state to the delete item params func (o *DeleteItemParams) SetState(state string) { o.State = state } // WithUser adds the user to the delete item params func (o *DeleteItemParams) WithUser(user string) *DeleteItemParams { o.SetUser(user) return o } // SetUser adds the user to the delete item params func (o *DeleteItemParams) SetUser(user string) { o.User = user } // WriteToRequest writes these params to a swagger request func (o *DeleteItemParams) 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 }