// Code generated by go-swagger; DO NOT EDIT. // All Code Copyright(c) 2018-2021 by Taxnexus, Inc. // All rights reserved worldwide. // Proprietary product; unlicensed use is not allowed package contacts // 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" ) // NewDeleteContactParams creates a new DeleteContactParams object // with the default values initialized. func NewDeleteContactParams() *DeleteContactParams { var () return &DeleteContactParams{ timeout: cr.DefaultTimeout, } } // NewDeleteContactParamsWithTimeout creates a new DeleteContactParams object // with the default values initialized, and the ability to set a timeout on a request func NewDeleteContactParamsWithTimeout(timeout time.Duration) *DeleteContactParams { var () return &DeleteContactParams{ timeout: timeout, } } // NewDeleteContactParamsWithContext creates a new DeleteContactParams object // with the default values initialized, and the ability to set a context for a request func NewDeleteContactParamsWithContext(ctx context.Context) *DeleteContactParams { var () return &DeleteContactParams{ Context: ctx, } } // NewDeleteContactParamsWithHTTPClient creates a new DeleteContactParams object // with the default values initialized, and the ability to set a custom HTTPClient for a request func NewDeleteContactParamsWithHTTPClient(client *http.Client) *DeleteContactParams { var () return &DeleteContactParams{ HTTPClient: client, } } /*DeleteContactParams contains all the parameters to send to the API endpoint for the delete contact operation typically these are written to a http.Request */ type DeleteContactParams struct { /*ContactID Taxnexus Id of the Contact to be retrieved */ ContactID *string timeout time.Duration Context context.Context HTTPClient *http.Client } // WithTimeout adds the timeout to the delete contact params func (o *DeleteContactParams) WithTimeout(timeout time.Duration) *DeleteContactParams { o.SetTimeout(timeout) return o } // SetTimeout adds the timeout to the delete contact params func (o *DeleteContactParams) SetTimeout(timeout time.Duration) { o.timeout = timeout } // WithContext adds the context to the delete contact params func (o *DeleteContactParams) WithContext(ctx context.Context) *DeleteContactParams { o.SetContext(ctx) return o } // SetContext adds the context to the delete contact params func (o *DeleteContactParams) SetContext(ctx context.Context) { o.Context = ctx } // WithHTTPClient adds the HTTPClient to the delete contact params func (o *DeleteContactParams) WithHTTPClient(client *http.Client) *DeleteContactParams { o.SetHTTPClient(client) return o } // SetHTTPClient adds the HTTPClient to the delete contact params func (o *DeleteContactParams) SetHTTPClient(client *http.Client) { o.HTTPClient = client } // WithContactID adds the contactID to the delete contact params func (o *DeleteContactParams) WithContactID(contactID *string) *DeleteContactParams { o.SetContactID(contactID) return o } // SetContactID adds the contactId to the delete contact params func (o *DeleteContactParams) SetContactID(contactID *string) { o.ContactID = contactID } // WriteToRequest writes these params to a swagger request func (o *DeleteContactParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error { if err := r.SetTimeout(o.timeout); err != nil { return err } var res []error if o.ContactID != nil { // query param contactId var qrContactID string if o.ContactID != nil { qrContactID = *o.ContactID } qContactID := qrContactID if qContactID != "" { if err := r.SetQueryParam("contactId", qContactID); err != nil { return err } } } if len(res) > 0 { return errors.CompositeValidationError(res...) } return nil }