lib/api/metrc-gw/metrc_gw_client/plants/put_plants_parameters.go

143 lines
3.8 KiB
Go

// Code generated by go-swagger; DO NOT EDIT.
// All Code Copyright(c) 2018-2020 by Taxnexus, Inc.
// All rights reserved worldwide.
// Proprietary product; unlicensed use is not allowed
package plants
// 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/taxnexus/lib/api/metrc-gw/metrc_gw_models"
)
// NewPutPlantsParams creates a new PutPlantsParams object
// with the default values initialized.
func NewPutPlantsParams() *PutPlantsParams {
var ()
return &PutPlantsParams{
timeout: cr.DefaultTimeout,
}
}
// NewPutPlantsParamsWithTimeout creates a new PutPlantsParams object
// with the default values initialized, and the ability to set a timeout on a request
func NewPutPlantsParamsWithTimeout(timeout time.Duration) *PutPlantsParams {
var ()
return &PutPlantsParams{
timeout: timeout,
}
}
// NewPutPlantsParamsWithContext creates a new PutPlantsParams object
// with the default values initialized, and the ability to set a context for a request
func NewPutPlantsParamsWithContext(ctx context.Context) *PutPlantsParams {
var ()
return &PutPlantsParams{
Context: ctx,
}
}
// NewPutPlantsParamsWithHTTPClient creates a new PutPlantsParams object
// with the default values initialized, and the ability to set a custom HTTPClient for a request
func NewPutPlantsParamsWithHTTPClient(client *http.Client) *PutPlantsParams {
var ()
return &PutPlantsParams{
HTTPClient: client,
}
}
/*PutPlantsParams contains all the parameters to send to the API endpoint
for the put plants operation typically these are written to a http.Request
*/
type PutPlantsParams struct {
/*PlantRequest
The Existing Plants with Ids
*/
PlantRequest *metrc_gw_models.PlantRequest
timeout time.Duration
Context context.Context
HTTPClient *http.Client
}
// WithTimeout adds the timeout to the put plants params
func (o *PutPlantsParams) WithTimeout(timeout time.Duration) *PutPlantsParams {
o.SetTimeout(timeout)
return o
}
// SetTimeout adds the timeout to the put plants params
func (o *PutPlantsParams) SetTimeout(timeout time.Duration) {
o.timeout = timeout
}
// WithContext adds the context to the put plants params
func (o *PutPlantsParams) WithContext(ctx context.Context) *PutPlantsParams {
o.SetContext(ctx)
return o
}
// SetContext adds the context to the put plants params
func (o *PutPlantsParams) SetContext(ctx context.Context) {
o.Context = ctx
}
// WithHTTPClient adds the HTTPClient to the put plants params
func (o *PutPlantsParams) WithHTTPClient(client *http.Client) *PutPlantsParams {
o.SetHTTPClient(client)
return o
}
// SetHTTPClient adds the HTTPClient to the put plants params
func (o *PutPlantsParams) SetHTTPClient(client *http.Client) {
o.HTTPClient = client
}
// WithPlantRequest adds the plantRequest to the put plants params
func (o *PutPlantsParams) WithPlantRequest(plantRequest *metrc_gw_models.PlantRequest) *PutPlantsParams {
o.SetPlantRequest(plantRequest)
return o
}
// SetPlantRequest adds the plantRequest to the put plants params
func (o *PutPlantsParams) SetPlantRequest(plantRequest *metrc_gw_models.PlantRequest) {
o.PlantRequest = plantRequest
}
// WriteToRequest writes these params to a swagger request
func (o *PutPlantsParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
if err := r.SetTimeout(o.timeout); err != nil {
return err
}
var res []error
if o.PlantRequest != nil {
if err := r.SetBodyParam(o.PlantRequest); err != nil {
return err
}
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}