lib/api/research/research_client/industry/put_industries_parameters.go

160 lines
4.7 KiB
Go
Raw Normal View History

// 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 industry
import (
"context"
"net/http"
"time"
"code.tnxs.net/vernonkeenan/lib/api/research/research_models"
"github.com/go-openapi/errors"
"github.com/go-openapi/runtime"
cr "github.com/go-openapi/runtime/client"
"github.com/go-openapi/strfmt"
)
// NewPutIndustriesParams creates a new PutIndustriesParams 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 NewPutIndustriesParams() *PutIndustriesParams {
return NewPutIndustriesParamsWithTimeout(cr.DefaultTimeout)
}
// NewPutIndustriesParamsWithTimeout creates a new PutIndustriesParams object
// with the ability to set a timeout on a request.
func NewPutIndustriesParamsWithTimeout(timeout time.Duration) *PutIndustriesParams {
return &PutIndustriesParams{
inner: innerParams{
timeout: timeout,
},
}
}
// NewPutIndustriesParamsWithContext creates a new PutIndustriesParams object
// with the ability to set a context for a request.
//
// Deprecated: use the operation call with context to pass the context instead of [PutIndustriesParams].
func NewPutIndustriesParamsWithContext(ctx context.Context) *PutIndustriesParams {
return &PutIndustriesParams{
inner: innerParams{
ctx: ctx,
},
}
}
// NewPutIndustriesParamsWithHTTPClient creates a new PutIndustriesParams object
// with the ability to set a custom HTTPClient for a request.
func NewPutIndustriesParamsWithHTTPClient(client *http.Client) *PutIndustriesParams {
return &PutIndustriesParams{
HTTPClient: client,
}
}
/*
PutIndustriesParams contains all the parameters to send to the API endpoint
for the put industries operation.
Typically these are written to a http.Request.
*/
type PutIndustriesParams struct {
// IndustryRequest.
//
// An array of new Industry records
IndustryRequest *research_models.IndustryRequest
HTTPClient *http.Client
inner innerParams
}
// WithDefaults hydrates default values in the put industries params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *PutIndustriesParams) WithDefaults() *PutIndustriesParams {
o.SetDefaults()
return o
}
// SetDefaults hydrates default values in the put industries params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *PutIndustriesParams) SetDefaults() {
// no default values defined for this parameter
}
// WithTimeout adds the timeout to the put industries params.
func (o *PutIndustriesParams) WithTimeout(timeout time.Duration) *PutIndustriesParams {
o.SetTimeout(timeout)
return o
}
// SetTimeout adds the timeout to the put industries params.
func (o *PutIndustriesParams) SetTimeout(timeout time.Duration) {
o.inner.timeout = timeout
}
// WithContext adds the context to the put industries params.
//
// Deprecated: use the operation call with context to pass the context instead of [PutIndustriesParams].
func (o *PutIndustriesParams) WithContext(ctx context.Context) *PutIndustriesParams {
o.SetContext(ctx)
return o
}
// SetContext adds the context to the put industries params.
//
// Deprecated: use the operation call with context to pass the context instead of [PutIndustriesParams].
func (o *PutIndustriesParams) SetContext(ctx context.Context) {
o.inner.ctx = ctx
}
// WithHTTPClient adds the HTTPClient to the put industries params.
func (o *PutIndustriesParams) WithHTTPClient(client *http.Client) *PutIndustriesParams {
o.SetHTTPClient(client)
return o
}
// SetHTTPClient adds the HTTPClient to the put industries params.
func (o *PutIndustriesParams) SetHTTPClient(client *http.Client) {
o.HTTPClient = client
}
// WithIndustryRequest adds the industryRequest to the put industries params.
func (o *PutIndustriesParams) WithIndustryRequest(industryRequest *research_models.IndustryRequest) *PutIndustriesParams {
o.SetIndustryRequest(industryRequest)
return o
}
// SetIndustryRequest adds the industryRequest to the put industries params.
func (o *PutIndustriesParams) SetIndustryRequest(industryRequest *research_models.IndustryRequest) {
o.IndustryRequest = industryRequest
}
// WriteToRequest writes these params to a [runtime.ClientRequest].
func (o *PutIndustriesParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
if err := r.SetTimeout(o.inner.timeout); err != nil {
return err
}
var res []error
if o.IndustryRequest != nil {
if err := r.SetBodyParam(o.IndustryRequest); err != nil {
return err
}
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}