lib/api/crm/v0.0.1/crm_client/leads/delete_lead_parameters.go

151 lines
3.7 KiB
Go

// 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 leads
// 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"
)
// NewDeleteLeadParams creates a new DeleteLeadParams object
// with the default values initialized.
func NewDeleteLeadParams() *DeleteLeadParams {
var ()
return &DeleteLeadParams{
timeout: cr.DefaultTimeout,
}
}
// NewDeleteLeadParamsWithTimeout creates a new DeleteLeadParams object
// with the default values initialized, and the ability to set a timeout on a request
func NewDeleteLeadParamsWithTimeout(timeout time.Duration) *DeleteLeadParams {
var ()
return &DeleteLeadParams{
timeout: timeout,
}
}
// NewDeleteLeadParamsWithContext creates a new DeleteLeadParams object
// with the default values initialized, and the ability to set a context for a request
func NewDeleteLeadParamsWithContext(ctx context.Context) *DeleteLeadParams {
var ()
return &DeleteLeadParams{
Context: ctx,
}
}
// NewDeleteLeadParamsWithHTTPClient creates a new DeleteLeadParams object
// with the default values initialized, and the ability to set a custom HTTPClient for a request
func NewDeleteLeadParamsWithHTTPClient(client *http.Client) *DeleteLeadParams {
var ()
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
Taxnexus Lead record ID
*/
LeadID *string
timeout time.Duration
Context context.Context
HTTPClient *http.Client
}
// 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.timeout = timeout
}
// WithContext adds the context to the delete lead params
func (o *DeleteLeadParams) WithContext(ctx context.Context) *DeleteLeadParams {
o.SetContext(ctx)
return o
}
// SetContext adds the context to the delete lead params
func (o *DeleteLeadParams) SetContext(ctx context.Context) {
o.Context = 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 swagger request
func (o *DeleteLeadParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
if err := r.SetTimeout(o.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
}