mirror of https://github.com/vernonkeenan/lib
156 lines
4.0 KiB
Go
156 lines
4.0 KiB
Go
// Code generated by go-swagger; DO NOT EDIT.
|
|
|
|
// (c) 2012-2020 by Taxnexus, Inc.
|
|
// All rights reserved worldwide.
|
|
// Proprietary product; unlicensed use is not allowed
|
|
|
|
package user
|
|
|
|
// 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"
|
|
)
|
|
|
|
// NewGetUserParams creates a new GetUserParams 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 NewGetUserParams() *GetUserParams {
|
|
return &GetUserParams{
|
|
timeout: cr.DefaultTimeout,
|
|
}
|
|
}
|
|
|
|
// NewGetUserParamsWithTimeout creates a new GetUserParams object
|
|
// with the ability to set a timeout on a request.
|
|
func NewGetUserParamsWithTimeout(timeout time.Duration) *GetUserParams {
|
|
return &GetUserParams{
|
|
timeout: timeout,
|
|
}
|
|
}
|
|
|
|
// NewGetUserParamsWithContext creates a new GetUserParams object
|
|
// with the ability to set a context for a request.
|
|
func NewGetUserParamsWithContext(ctx context.Context) *GetUserParams {
|
|
return &GetUserParams{
|
|
Context: ctx,
|
|
}
|
|
}
|
|
|
|
// NewGetUserParamsWithHTTPClient creates a new GetUserParams object
|
|
// with the ability to set a custom HTTPClient for a request.
|
|
func NewGetUserParamsWithHTTPClient(client *http.Client) *GetUserParams {
|
|
return &GetUserParams{
|
|
HTTPClient: client,
|
|
}
|
|
}
|
|
|
|
/*
|
|
GetUserParams contains all the parameters to send to the API endpoint
|
|
|
|
for the get user operation.
|
|
|
|
Typically these are written to a http.Request.
|
|
*/
|
|
type GetUserParams struct {
|
|
|
|
/* UserIDPath.
|
|
|
|
Record Id of a User
|
|
*/
|
|
UserIDPath string
|
|
|
|
timeout time.Duration
|
|
Context context.Context
|
|
HTTPClient *http.Client
|
|
}
|
|
|
|
// WithDefaults hydrates default values in the get user params (not the query body).
|
|
//
|
|
// All values with no default are reset to their zero value.
|
|
func (o *GetUserParams) WithDefaults() *GetUserParams {
|
|
o.SetDefaults()
|
|
return o
|
|
}
|
|
|
|
// SetDefaults hydrates default values in the get user params (not the query body).
|
|
//
|
|
// All values with no default are reset to their zero value.
|
|
func (o *GetUserParams) SetDefaults() {
|
|
// no default values defined for this parameter
|
|
}
|
|
|
|
// WithTimeout adds the timeout to the get user params
|
|
func (o *GetUserParams) WithTimeout(timeout time.Duration) *GetUserParams {
|
|
o.SetTimeout(timeout)
|
|
return o
|
|
}
|
|
|
|
// SetTimeout adds the timeout to the get user params
|
|
func (o *GetUserParams) SetTimeout(timeout time.Duration) {
|
|
o.timeout = timeout
|
|
}
|
|
|
|
// WithContext adds the context to the get user params
|
|
func (o *GetUserParams) WithContext(ctx context.Context) *GetUserParams {
|
|
o.SetContext(ctx)
|
|
return o
|
|
}
|
|
|
|
// SetContext adds the context to the get user params
|
|
func (o *GetUserParams) SetContext(ctx context.Context) {
|
|
o.Context = ctx
|
|
}
|
|
|
|
// WithHTTPClient adds the HTTPClient to the get user params
|
|
func (o *GetUserParams) WithHTTPClient(client *http.Client) *GetUserParams {
|
|
o.SetHTTPClient(client)
|
|
return o
|
|
}
|
|
|
|
// SetHTTPClient adds the HTTPClient to the get user params
|
|
func (o *GetUserParams) SetHTTPClient(client *http.Client) {
|
|
o.HTTPClient = client
|
|
}
|
|
|
|
// WithUserIDPath adds the userIDPath to the get user params
|
|
func (o *GetUserParams) WithUserIDPath(userIDPath string) *GetUserParams {
|
|
o.SetUserIDPath(userIDPath)
|
|
return o
|
|
}
|
|
|
|
// SetUserIDPath adds the userIdPath to the get user params
|
|
func (o *GetUserParams) SetUserIDPath(userIDPath string) {
|
|
o.UserIDPath = userIDPath
|
|
}
|
|
|
|
// WriteToRequest writes these params to a swagger request
|
|
func (o *GetUserParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
|
|
|
|
if err := r.SetTimeout(o.timeout); err != nil {
|
|
return err
|
|
}
|
|
var res []error
|
|
|
|
// path param userIdPath
|
|
if err := r.SetPathParam("userIdPath", o.UserIDPath); err != nil {
|
|
return err
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|