// 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 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 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 NewDeleteContactParams() *DeleteContactParams { return &DeleteContactParams{ timeout: cr.DefaultTimeout, } } // NewDeleteContactParamsWithTimeout creates a new DeleteContactParams object // with the ability to set a timeout on a request. func NewDeleteContactParamsWithTimeout(timeout time.Duration) *DeleteContactParams { return &DeleteContactParams{ timeout: timeout, } } // NewDeleteContactParamsWithContext creates a new DeleteContactParams object // with the ability to set a context for a request. func NewDeleteContactParamsWithContext(ctx context.Context) *DeleteContactParams { return &DeleteContactParams{ Context: ctx, } } // NewDeleteContactParamsWithHTTPClient creates a new DeleteContactParams object // with the ability to set a custom HTTPClient for a request. func NewDeleteContactParamsWithHTTPClient(client *http.Client) *DeleteContactParams { 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 Contact record ID */ ContactID *string timeout time.Duration Context context.Context HTTPClient *http.Client } // WithDefaults hydrates default values in the delete contact params (not the query body). // // All values with no default are reset to their zero value. func (o *DeleteContactParams) WithDefaults() *DeleteContactParams { o.SetDefaults() return o } // SetDefaults hydrates default values in the delete contact params (not the query body). // // All values with no default are reset to their zero value. func (o *DeleteContactParams) SetDefaults() { // no default values defined for this parameter } // 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 }