// 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 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 NewDeleteContactParamsWithTimeout(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{ inner: innerParams{ timeout: timeout, }, } } // NewDeleteContactParamsWithContext creates a new DeleteContactParams object // with the ability to set a context for a request. // // Deprecated: use the operation call with context to pass the context instead of [DeleteContactParams]. func NewDeleteContactParamsWithContext(ctx context.Context) *DeleteContactParams { return &DeleteContactParams{ inner: innerParams{ ctx: 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. // // Contact record ID ContactID *string HTTPClient *http.Client inner innerParams } // 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.inner.timeout = timeout } // WithContext adds the context to the delete contact params. // // Deprecated: use the operation call with context to pass the context instead of [DeleteContactParams]. func (o *DeleteContactParams) WithContext(ctx context.Context) *DeleteContactParams { o.SetContext(ctx) return o } // SetContext adds the context to the delete contact params. // // Deprecated: use the operation call with context to pass the context instead of [DeleteContactParams]. func (o *DeleteContactParams) SetContext(ctx context.Context) { o.inner.ctx = 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 [runtime.ClientRequest]. func (o *DeleteContactParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error { if err := r.SetTimeout(o.inner.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 }