lib/api/metrc-gw/metrc_gw_client/strains/put_strains_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 strains
// 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"
)
// NewPutStrainsParams creates a new PutStrainsParams 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 NewPutStrainsParams() *PutStrainsParams {
return &PutStrainsParams{
timeout: cr.DefaultTimeout,
}
}
// NewPutStrainsParamsWithTimeout creates a new PutStrainsParams object
// with the ability to set a timeout on a request.
func NewPutStrainsParamsWithTimeout(timeout time.Duration) *PutStrainsParams {
return &PutStrainsParams{
timeout: timeout,
}
}
// NewPutStrainsParamsWithContext creates a new PutStrainsParams object
// with the ability to set a context for a request.
func NewPutStrainsParamsWithContext(ctx context.Context) *PutStrainsParams {
return &PutStrainsParams{
Context: ctx,
}
}
// NewPutStrainsParamsWithHTTPClient creates a new PutStrainsParams object
// with the ability to set a custom HTTPClient for a request.
func NewPutStrainsParamsWithHTTPClient(client *http.Client) *PutStrainsParams {
return &PutStrainsParams{
HTTPClient: client,
}
}
/* PutStrainsParams contains all the parameters to send to the API endpoint
for the put strains operation.
Typically these are written to a http.Request.
*/
type PutStrainsParams struct {
/* StrainRequest.
The Existing Strains with Ids
*/
StrainRequest *metrc_gw_models.StrainRequest
timeout time.Duration
Context context.Context
HTTPClient *http.Client
}
// WithDefaults hydrates default values in the put strains params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *PutStrainsParams) WithDefaults() *PutStrainsParams {
o.SetDefaults()
return o
}
// SetDefaults hydrates default values in the put strains params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *PutStrainsParams) SetDefaults() {
// no default values defined for this parameter
}
// WithTimeout adds the timeout to the put strains params
func (o *PutStrainsParams) WithTimeout(timeout time.Duration) *PutStrainsParams {
o.SetTimeout(timeout)
return o
}
// SetTimeout adds the timeout to the put strains params
func (o *PutStrainsParams) SetTimeout(timeout time.Duration) {
o.timeout = timeout
}
// WithContext adds the context to the put strains params
func (o *PutStrainsParams) WithContext(ctx context.Context) *PutStrainsParams {
o.SetContext(ctx)
return o
}
// SetContext adds the context to the put strains params
func (o *PutStrainsParams) SetContext(ctx context.Context) {
o.Context = ctx
}
// WithHTTPClient adds the HTTPClient to the put strains params
func (o *PutStrainsParams) WithHTTPClient(client *http.Client) *PutStrainsParams {
o.SetHTTPClient(client)
return o
}
// SetHTTPClient adds the HTTPClient to the put strains params
func (o *PutStrainsParams) SetHTTPClient(client *http.Client) {
o.HTTPClient = client
}
// WithStrainRequest adds the strainRequest to the put strains params
func (o *PutStrainsParams) WithStrainRequest(strainRequest *metrc_gw_models.StrainRequest) *PutStrainsParams {
o.SetStrainRequest(strainRequest)
return o
}
// SetStrainRequest adds the strainRequest to the put strains params
func (o *PutStrainsParams) SetStrainRequest(strainRequest *metrc_gw_models.StrainRequest) {
o.StrainRequest = strainRequest
}
// WriteToRequest writes these params to a swagger request
func (o *PutStrainsParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
if err := r.SetTimeout(o.timeout); err != nil {
return err
}
var res []error
if o.StrainRequest != nil {
if err := r.SetBodyParam(o.StrainRequest); err != nil {
return err
}
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}