mirror of https://github.com/vernonkeenan/lib
158 lines
4.4 KiB
Go
158 lines
4.4 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 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"
|
|
|
|
"code.tnxs.net/vernonkeenan/lib/api/crm/crm_models"
|
|
)
|
|
|
|
// NewPutContactsParams creates a new PutContactsParams 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 NewPutContactsParams() *PutContactsParams {
|
|
return &PutContactsParams{
|
|
timeout: cr.DefaultTimeout,
|
|
}
|
|
}
|
|
|
|
// NewPutContactsParamsWithTimeout creates a new PutContactsParams object
|
|
// with the ability to set a timeout on a request.
|
|
func NewPutContactsParamsWithTimeout(timeout time.Duration) *PutContactsParams {
|
|
return &PutContactsParams{
|
|
timeout: timeout,
|
|
}
|
|
}
|
|
|
|
// NewPutContactsParamsWithContext creates a new PutContactsParams object
|
|
// with the ability to set a context for a request.
|
|
func NewPutContactsParamsWithContext(ctx context.Context) *PutContactsParams {
|
|
return &PutContactsParams{
|
|
Context: ctx,
|
|
}
|
|
}
|
|
|
|
// NewPutContactsParamsWithHTTPClient creates a new PutContactsParams object
|
|
// with the ability to set a custom HTTPClient for a request.
|
|
func NewPutContactsParamsWithHTTPClient(client *http.Client) *PutContactsParams {
|
|
return &PutContactsParams{
|
|
HTTPClient: client,
|
|
}
|
|
}
|
|
|
|
/*
|
|
PutContactsParams contains all the parameters to send to the API endpoint
|
|
|
|
for the put contacts operation.
|
|
|
|
Typically these are written to a http.Request.
|
|
*/
|
|
type PutContactsParams struct {
|
|
|
|
/* ContactsRequest.
|
|
|
|
An array of new Contact records
|
|
*/
|
|
ContactsRequest *crm_models.ContactRequest
|
|
|
|
timeout time.Duration
|
|
Context context.Context
|
|
HTTPClient *http.Client
|
|
}
|
|
|
|
// WithDefaults hydrates default values in the put contacts params (not the query body).
|
|
//
|
|
// All values with no default are reset to their zero value.
|
|
func (o *PutContactsParams) WithDefaults() *PutContactsParams {
|
|
o.SetDefaults()
|
|
return o
|
|
}
|
|
|
|
// SetDefaults hydrates default values in the put contacts params (not the query body).
|
|
//
|
|
// All values with no default are reset to their zero value.
|
|
func (o *PutContactsParams) SetDefaults() {
|
|
// no default values defined for this parameter
|
|
}
|
|
|
|
// WithTimeout adds the timeout to the put contacts params
|
|
func (o *PutContactsParams) WithTimeout(timeout time.Duration) *PutContactsParams {
|
|
o.SetTimeout(timeout)
|
|
return o
|
|
}
|
|
|
|
// SetTimeout adds the timeout to the put contacts params
|
|
func (o *PutContactsParams) SetTimeout(timeout time.Duration) {
|
|
o.timeout = timeout
|
|
}
|
|
|
|
// WithContext adds the context to the put contacts params
|
|
func (o *PutContactsParams) WithContext(ctx context.Context) *PutContactsParams {
|
|
o.SetContext(ctx)
|
|
return o
|
|
}
|
|
|
|
// SetContext adds the context to the put contacts params
|
|
func (o *PutContactsParams) SetContext(ctx context.Context) {
|
|
o.Context = ctx
|
|
}
|
|
|
|
// WithHTTPClient adds the HTTPClient to the put contacts params
|
|
func (o *PutContactsParams) WithHTTPClient(client *http.Client) *PutContactsParams {
|
|
o.SetHTTPClient(client)
|
|
return o
|
|
}
|
|
|
|
// SetHTTPClient adds the HTTPClient to the put contacts params
|
|
func (o *PutContactsParams) SetHTTPClient(client *http.Client) {
|
|
o.HTTPClient = client
|
|
}
|
|
|
|
// WithContactsRequest adds the contactsRequest to the put contacts params
|
|
func (o *PutContactsParams) WithContactsRequest(contactsRequest *crm_models.ContactRequest) *PutContactsParams {
|
|
o.SetContactsRequest(contactsRequest)
|
|
return o
|
|
}
|
|
|
|
// SetContactsRequest adds the contactsRequest to the put contacts params
|
|
func (o *PutContactsParams) SetContactsRequest(contactsRequest *crm_models.ContactRequest) {
|
|
o.ContactsRequest = contactsRequest
|
|
}
|
|
|
|
// WriteToRequest writes these params to a swagger request
|
|
func (o *PutContactsParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
|
|
|
|
if err := r.SetTimeout(o.timeout); err != nil {
|
|
return err
|
|
}
|
|
var res []error
|
|
if o.ContactsRequest != nil {
|
|
if err := r.SetBodyParam(o.ContactsRequest); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|