lib/api/metrc-gw/metrc_gw_client/rooms/delete_room_parameters.go

267 lines
6.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 rooms
// 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"
)
// NewDeleteRoomParams creates a new DeleteRoomParams 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 NewDeleteRoomParams() *DeleteRoomParams {
return &DeleteRoomParams{
timeout: cr.DefaultTimeout,
}
}
// NewDeleteRoomParamsWithTimeout creates a new DeleteRoomParams object
// with the ability to set a timeout on a request.
func NewDeleteRoomParamsWithTimeout(timeout time.Duration) *DeleteRoomParams {
return &DeleteRoomParams{
timeout: timeout,
}
}
// NewDeleteRoomParamsWithContext creates a new DeleteRoomParams object
// with the ability to set a context for a request.
func NewDeleteRoomParamsWithContext(ctx context.Context) *DeleteRoomParams {
return &DeleteRoomParams{
Context: ctx,
}
}
// NewDeleteRoomParamsWithHTTPClient creates a new DeleteRoomParams object
// with the ability to set a custom HTTPClient for a request.
func NewDeleteRoomParamsWithHTTPClient(client *http.Client) *DeleteRoomParams {
return &DeleteRoomParams{
HTTPClient: client,
}
}
/* DeleteRoomParams contains all the parameters to send to the API endpoint
for the delete room operation.
Typically these are written to a http.Request.
*/
type DeleteRoomParams struct {
/* License.
The Licnese Number for the query
*/
License string
/* Reseller.
The METRC Reseller Key
*/
Reseller string
/* RoomNumber.
The Room ID number
*/
RoomNumber 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
}
// WithDefaults hydrates default values in the delete room params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *DeleteRoomParams) WithDefaults() *DeleteRoomParams {
o.SetDefaults()
return o
}
// SetDefaults hydrates default values in the delete room params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *DeleteRoomParams) SetDefaults() {
// no default values defined for this parameter
}
// WithTimeout adds the timeout to the delete room params
func (o *DeleteRoomParams) WithTimeout(timeout time.Duration) *DeleteRoomParams {
o.SetTimeout(timeout)
return o
}
// SetTimeout adds the timeout to the delete room params
func (o *DeleteRoomParams) SetTimeout(timeout time.Duration) {
o.timeout = timeout
}
// WithContext adds the context to the delete room params
func (o *DeleteRoomParams) WithContext(ctx context.Context) *DeleteRoomParams {
o.SetContext(ctx)
return o
}
// SetContext adds the context to the delete room params
func (o *DeleteRoomParams) SetContext(ctx context.Context) {
o.Context = ctx
}
// WithHTTPClient adds the HTTPClient to the delete room params
func (o *DeleteRoomParams) WithHTTPClient(client *http.Client) *DeleteRoomParams {
o.SetHTTPClient(client)
return o
}
// SetHTTPClient adds the HTTPClient to the delete room params
func (o *DeleteRoomParams) SetHTTPClient(client *http.Client) {
o.HTTPClient = client
}
// WithLicense adds the license to the delete room params
func (o *DeleteRoomParams) WithLicense(license string) *DeleteRoomParams {
o.SetLicense(license)
return o
}
// SetLicense adds the license to the delete room params
func (o *DeleteRoomParams) SetLicense(license string) {
o.License = license
}
// WithReseller adds the reseller to the delete room params
func (o *DeleteRoomParams) WithReseller(reseller string) *DeleteRoomParams {
o.SetReseller(reseller)
return o
}
// SetReseller adds the reseller to the delete room params
func (o *DeleteRoomParams) SetReseller(reseller string) {
o.Reseller = reseller
}
// WithRoomNumber adds the roomNumber to the delete room params
func (o *DeleteRoomParams) WithRoomNumber(roomNumber string) *DeleteRoomParams {
o.SetRoomNumber(roomNumber)
return o
}
// SetRoomNumber adds the roomNumber to the delete room params
func (o *DeleteRoomParams) SetRoomNumber(roomNumber string) {
o.RoomNumber = roomNumber
}
// WithState adds the state to the delete room params
func (o *DeleteRoomParams) WithState(state string) *DeleteRoomParams {
o.SetState(state)
return o
}
// SetState adds the state to the delete room params
func (o *DeleteRoomParams) SetState(state string) {
o.State = state
}
// WithUser adds the user to the delete room params
func (o *DeleteRoomParams) WithUser(user string) *DeleteRoomParams {
o.SetUser(user)
return o
}
// SetUser adds the user to the delete room params
func (o *DeleteRoomParams) SetUser(user string) {
o.User = user
}
// WriteToRequest writes these params to a swagger request
func (o *DeleteRoomParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
if err := r.SetTimeout(o.timeout); err != nil {
return err
}
var res []error
// query param license
qrLicense := o.License
qLicense := qrLicense
if qLicense != "" {
if err := r.SetQueryParam("license", qLicense); 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 roomNumber
qrRoomNumber := o.RoomNumber
qRoomNumber := qrRoomNumber
if qRoomNumber != "" {
if err := r.SetQueryParam("roomNumber", qRoomNumber); 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
}