// Code generated by go-swagger; DO NOT EDIT. // (c) 2012-2020 by Taxnexus, Inc. // All rights reserved worldwide. // Proprietary product; unlicensed use is not allowed package leads 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" ) // NewDeleteLeadParams creates a new DeleteLeadParams object, // with the default timeout for this client. // // Default values are not hydrated, since defaults are normally applied by the API server side. // // To enforce default values in parameter, use SetDefaults or WithDefaults. func NewDeleteLeadParams() *DeleteLeadParams { return NewDeleteLeadParamsWithTimeout(cr.DefaultTimeout) } // NewDeleteLeadParamsWithTimeout creates a new DeleteLeadParams object // with the ability to set a timeout on a request. func NewDeleteLeadParamsWithTimeout(timeout time.Duration) *DeleteLeadParams { return &DeleteLeadParams{ inner: innerParams{ timeout: timeout, }, } } // NewDeleteLeadParamsWithContext creates a new DeleteLeadParams object // with the ability to set a context for a request. // // Deprecated: use the operation call with context to pass the context instead of [DeleteLeadParams]. func NewDeleteLeadParamsWithContext(ctx context.Context) *DeleteLeadParams { return &DeleteLeadParams{ inner: innerParams{ ctx: ctx, }, } } // NewDeleteLeadParamsWithHTTPClient creates a new DeleteLeadParams object // with the ability to set a custom HTTPClient for a request. func NewDeleteLeadParamsWithHTTPClient(client *http.Client) *DeleteLeadParams { return &DeleteLeadParams{ HTTPClient: client, } } /* DeleteLeadParams contains all the parameters to send to the API endpoint for the delete lead operation. Typically these are written to a http.Request. */ type DeleteLeadParams struct { // LeadID. // // Lead record ID LeadID *string HTTPClient *http.Client inner innerParams } // WithDefaults hydrates default values in the delete lead params (not the query body). // // All values with no default are reset to their zero value. func (o *DeleteLeadParams) WithDefaults() *DeleteLeadParams { o.SetDefaults() return o } // SetDefaults hydrates default values in the delete lead params (not the query body). // // All values with no default are reset to their zero value. func (o *DeleteLeadParams) SetDefaults() { // no default values defined for this parameter } // WithTimeout adds the timeout to the delete lead params. func (o *DeleteLeadParams) WithTimeout(timeout time.Duration) *DeleteLeadParams { o.SetTimeout(timeout) return o } // SetTimeout adds the timeout to the delete lead params. func (o *DeleteLeadParams) SetTimeout(timeout time.Duration) { o.inner.timeout = timeout } // WithContext adds the context to the delete lead params. // // Deprecated: use the operation call with context to pass the context instead of [DeleteLeadParams]. func (o *DeleteLeadParams) WithContext(ctx context.Context) *DeleteLeadParams { o.SetContext(ctx) return o } // SetContext adds the context to the delete lead params. // // Deprecated: use the operation call with context to pass the context instead of [DeleteLeadParams]. func (o *DeleteLeadParams) SetContext(ctx context.Context) { o.inner.ctx = ctx } // WithHTTPClient adds the HTTPClient to the delete lead params. func (o *DeleteLeadParams) WithHTTPClient(client *http.Client) *DeleteLeadParams { o.SetHTTPClient(client) return o } // SetHTTPClient adds the HTTPClient to the delete lead params. func (o *DeleteLeadParams) SetHTTPClient(client *http.Client) { o.HTTPClient = client } // WithLeadID adds the leadID to the delete lead params. func (o *DeleteLeadParams) WithLeadID(leadID *string) *DeleteLeadParams { o.SetLeadID(leadID) return o } // SetLeadID adds the leadId to the delete lead params. func (o *DeleteLeadParams) SetLeadID(leadID *string) { o.LeadID = leadID } // WriteToRequest writes these params to a [runtime.ClientRequest]. func (o *DeleteLeadParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error { if err := r.SetTimeout(o.inner.timeout); err != nil { return err } var res []error if o.LeadID != nil { // query param leadId var qrLeadID string if o.LeadID != nil { qrLeadID = *o.LeadID } qLeadID := qrLeadID if qLeadID != "" { if err := r.SetQueryParam("leadId", qLeadID); err != nil { return err } } } if len(res) > 0 { return errors.CompositeValidationError(res...) } return nil }