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

156 lines
4.3 KiB
Go

// Code generated by go-swagger; DO NOT EDIT.
// All Code Copyright(c) 2018-2021 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 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 NewPutPlantsParams() *PutPlantsParams {
return &PutPlantsParams{
timeout: cr.DefaultTimeout,
}
}
// NewPutPlantsParamsWithTimeout creates a new PutPlantsParams object
// with the ability to set a timeout on a request.
func NewPutPlantsParamsWithTimeout(timeout time.Duration) *PutPlantsParams {
return &PutPlantsParams{
timeout: timeout,
}
}
// NewPutPlantsParamsWithContext creates a new PutPlantsParams object
// with the ability to set a context for a request.
func NewPutPlantsParamsWithContext(ctx context.Context) *PutPlantsParams {
return &PutPlantsParams{
Context: ctx,
}
}
// NewPutPlantsParamsWithHTTPClient creates a new PutPlantsParams object
// with the ability to set a custom HTTPClient for a request.
func NewPutPlantsParamsWithHTTPClient(client *http.Client) *PutPlantsParams {
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
}
// WithDefaults hydrates default values in the put plants params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *PutPlantsParams) WithDefaults() *PutPlantsParams {
o.SetDefaults()
return o
}
// SetDefaults hydrates default values in the put plants params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *PutPlantsParams) SetDefaults() {
// no default values defined for this parameter
}
// 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
}