mirror of https://github.com/vernonkeenan/lib
168 lines
4.2 KiB
Go
168 lines
4.2 KiB
Go
// 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
|
|
|
|
// 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 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 &DeleteLeadParams{
|
|
timeout: 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{
|
|
timeout: timeout,
|
|
}
|
|
}
|
|
|
|
// NewDeleteLeadParamsWithContext creates a new DeleteLeadParams object
|
|
// with the ability to set a context for a request.
|
|
func NewDeleteLeadParamsWithContext(ctx context.Context) *DeleteLeadParams {
|
|
return &DeleteLeadParams{
|
|
Context: 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
|
|
|
|
timeout time.Duration
|
|
Context context.Context
|
|
HTTPClient *http.Client
|
|
}
|
|
|
|
// 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.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
|
|
}
|