lib/api/metrc-gw/metrc_gw_client/items/get_items_parameters.go

412 lines
9.2 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 items
// 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"
"github.com/go-openapi/swag"
)
// NewGetItemsParams creates a new GetItemsParams object
// with the default values initialized.
func NewGetItemsParams() *GetItemsParams {
var ()
return &GetItemsParams{
timeout: cr.DefaultTimeout,
}
}
// NewGetItemsParamsWithTimeout creates a new GetItemsParams object
// with the default values initialized, and the ability to set a timeout on a request
func NewGetItemsParamsWithTimeout(timeout time.Duration) *GetItemsParams {
var ()
return &GetItemsParams{
timeout: timeout,
}
}
// NewGetItemsParamsWithContext creates a new GetItemsParams object
// with the default values initialized, and the ability to set a context for a request
func NewGetItemsParamsWithContext(ctx context.Context) *GetItemsParams {
var ()
return &GetItemsParams{
Context: ctx,
}
}
// NewGetItemsParamsWithHTTPClient creates a new GetItemsParams object
// with the default values initialized, and the ability to set a custom HTTPClient for a request
func NewGetItemsParamsWithHTTPClient(client *http.Client) *GetItemsParams {
var ()
return &GetItemsParams{
HTTPClient: client,
}
}
/*GetItemsParams contains all the parameters to send to the API endpoint
for the get items operation typically these are written to a http.Request
*/
type GetItemsParams struct {
/*Active
Get Active objects?
*/
Active *bool
/*ItemID
The Item Number
*/
ItemID *float64
/*LastModifiedEnd
The last modified end timestamp
*/
LastModifiedEnd *string
/*LastModifiedStart
The last modified start timestamp
*/
LastModifiedStart *string
/*License
The Licnese Number for the query
*/
License string
/*Onhold
Get On Hold objects?
*/
Onhold *bool
/*Production
Use Production API?
*/
Production *bool
/*Reseller
The METRC Reseller Key
*/
Reseller string
/*State
The 2-character State Code
*/
State string
/*User
The METRC User Key
*/
User string
timeout time.Duration
Context context.Context
HTTPClient *http.Client
}
// WithTimeout adds the timeout to the get items params
func (o *GetItemsParams) WithTimeout(timeout time.Duration) *GetItemsParams {
o.SetTimeout(timeout)
return o
}
// SetTimeout adds the timeout to the get items params
func (o *GetItemsParams) SetTimeout(timeout time.Duration) {
o.timeout = timeout
}
// WithContext adds the context to the get items params
func (o *GetItemsParams) WithContext(ctx context.Context) *GetItemsParams {
o.SetContext(ctx)
return o
}
// SetContext adds the context to the get items params
func (o *GetItemsParams) SetContext(ctx context.Context) {
o.Context = ctx
}
// WithHTTPClient adds the HTTPClient to the get items params
func (o *GetItemsParams) WithHTTPClient(client *http.Client) *GetItemsParams {
o.SetHTTPClient(client)
return o
}
// SetHTTPClient adds the HTTPClient to the get items params
func (o *GetItemsParams) SetHTTPClient(client *http.Client) {
o.HTTPClient = client
}
// WithActive adds the active to the get items params
func (o *GetItemsParams) WithActive(active *bool) *GetItemsParams {
o.SetActive(active)
return o
}
// SetActive adds the active to the get items params
func (o *GetItemsParams) SetActive(active *bool) {
o.Active = active
}
// WithItemID adds the itemID to the get items params
func (o *GetItemsParams) WithItemID(itemID *float64) *GetItemsParams {
o.SetItemID(itemID)
return o
}
// SetItemID adds the itemId to the get items params
func (o *GetItemsParams) SetItemID(itemID *float64) {
o.ItemID = itemID
}
// WithLastModifiedEnd adds the lastModifiedEnd to the get items params
func (o *GetItemsParams) WithLastModifiedEnd(lastModifiedEnd *string) *GetItemsParams {
o.SetLastModifiedEnd(lastModifiedEnd)
return o
}
// SetLastModifiedEnd adds the lastModifiedEnd to the get items params
func (o *GetItemsParams) SetLastModifiedEnd(lastModifiedEnd *string) {
o.LastModifiedEnd = lastModifiedEnd
}
// WithLastModifiedStart adds the lastModifiedStart to the get items params
func (o *GetItemsParams) WithLastModifiedStart(lastModifiedStart *string) *GetItemsParams {
o.SetLastModifiedStart(lastModifiedStart)
return o
}
// SetLastModifiedStart adds the lastModifiedStart to the get items params
func (o *GetItemsParams) SetLastModifiedStart(lastModifiedStart *string) {
o.LastModifiedStart = lastModifiedStart
}
// WithLicense adds the license to the get items params
func (o *GetItemsParams) WithLicense(license string) *GetItemsParams {
o.SetLicense(license)
return o
}
// SetLicense adds the license to the get items params
func (o *GetItemsParams) SetLicense(license string) {
o.License = license
}
// WithOnhold adds the onhold to the get items params
func (o *GetItemsParams) WithOnhold(onhold *bool) *GetItemsParams {
o.SetOnhold(onhold)
return o
}
// SetOnhold adds the onhold to the get items params
func (o *GetItemsParams) SetOnhold(onhold *bool) {
o.Onhold = onhold
}
// WithProduction adds the production to the get items params
func (o *GetItemsParams) WithProduction(production *bool) *GetItemsParams {
o.SetProduction(production)
return o
}
// SetProduction adds the production to the get items params
func (o *GetItemsParams) SetProduction(production *bool) {
o.Production = production
}
// WithReseller adds the reseller to the get items params
func (o *GetItemsParams) WithReseller(reseller string) *GetItemsParams {
o.SetReseller(reseller)
return o
}
// SetReseller adds the reseller to the get items params
func (o *GetItemsParams) SetReseller(reseller string) {
o.Reseller = reseller
}
// WithState adds the state to the get items params
func (o *GetItemsParams) WithState(state string) *GetItemsParams {
o.SetState(state)
return o
}
// SetState adds the state to the get items params
func (o *GetItemsParams) SetState(state string) {
o.State = state
}
// WithUser adds the user to the get items params
func (o *GetItemsParams) WithUser(user string) *GetItemsParams {
o.SetUser(user)
return o
}
// SetUser adds the user to the get items params
func (o *GetItemsParams) SetUser(user string) {
o.User = user
}
// WriteToRequest writes these params to a swagger request
func (o *GetItemsParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
if err := r.SetTimeout(o.timeout); err != nil {
return err
}
var res []error
if o.Active != nil {
// query param active
var qrActive bool
if o.Active != nil {
qrActive = *o.Active
}
qActive := swag.FormatBool(qrActive)
if qActive != "" {
if err := r.SetQueryParam("active", qActive); err != nil {
return err
}
}
}
if o.ItemID != nil {
// query param itemId
var qrItemID float64
if o.ItemID != nil {
qrItemID = *o.ItemID
}
qItemID := swag.FormatFloat64(qrItemID)
if qItemID != "" {
if err := r.SetQueryParam("itemId", qItemID); err != nil {
return err
}
}
}
if o.LastModifiedEnd != nil {
// query param lastModifiedEnd
var qrLastModifiedEnd string
if o.LastModifiedEnd != nil {
qrLastModifiedEnd = *o.LastModifiedEnd
}
qLastModifiedEnd := qrLastModifiedEnd
if qLastModifiedEnd != "" {
if err := r.SetQueryParam("lastModifiedEnd", qLastModifiedEnd); err != nil {
return err
}
}
}
if o.LastModifiedStart != nil {
// query param lastModifiedStart
var qrLastModifiedStart string
if o.LastModifiedStart != nil {
qrLastModifiedStart = *o.LastModifiedStart
}
qLastModifiedStart := qrLastModifiedStart
if qLastModifiedStart != "" {
if err := r.SetQueryParam("lastModifiedStart", qLastModifiedStart); err != nil {
return err
}
}
}
// query param license
qrLicense := o.License
qLicense := qrLicense
if qLicense != "" {
if err := r.SetQueryParam("license", qLicense); err != nil {
return err
}
}
if o.Onhold != nil {
// query param onhold
var qrOnhold bool
if o.Onhold != nil {
qrOnhold = *o.Onhold
}
qOnhold := swag.FormatBool(qrOnhold)
if qOnhold != "" {
if err := r.SetQueryParam("onhold", qOnhold); err != nil {
return err
}
}
}
if o.Production != nil {
// query param production
var qrProduction bool
if o.Production != nil {
qrProduction = *o.Production
}
qProduction := swag.FormatBool(qrProduction)
if qProduction != "" {
if err := r.SetQueryParam("production", qProduction); err != nil {
return err
}
}
}
// query param reseller
qrReseller := o.Reseller
qReseller := qrReseller
if qReseller != "" {
if err := r.SetQueryParam("reseller", qReseller); err != nil {
return err
}
}
// query param state
qrState := o.State
qState := qrState
if qState != "" {
if err := r.SetQueryParam("state", qState); err != nil {
return err
}
}
// query param user
qrUser := o.User
qUser := qrUser
if qUser != "" {
if err := r.SetQueryParam("user", qUser); err != nil {
return err
}
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}