lib/api/members/members_client/sessions/get_me_parameters.go

137 lines
3.6 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 sessions
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"
)
// NewGetMeParams creates a new GetMeParams 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 NewGetMeParams() *GetMeParams {
return NewGetMeParamsWithTimeout(cr.DefaultTimeout)
}
// NewGetMeParamsWithTimeout creates a new GetMeParams object
// with the ability to set a timeout on a request.
func NewGetMeParamsWithTimeout(timeout time.Duration) *GetMeParams {
return &GetMeParams{
inner: innerParams{
timeout: timeout,
},
}
}
// NewGetMeParamsWithContext creates a new GetMeParams object
// with the ability to set a context for a request.
//
// Deprecated: use the operation call with context to pass the context instead of [GetMeParams].
func NewGetMeParamsWithContext(ctx context.Context) *GetMeParams {
return &GetMeParams{
inner: innerParams{
ctx: ctx,
},
}
}
// NewGetMeParamsWithHTTPClient creates a new GetMeParams object
// with the ability to set a custom HTTPClient for a request.
func NewGetMeParamsWithHTTPClient(client *http.Client) *GetMeParams {
return &GetMeParams{
HTTPClient: client,
}
}
/*
GetMeParams contains all the parameters to send to the API endpoint
for the get me operation.
Typically these are written to a http.Request.
*/
type GetMeParams struct {
HTTPClient *http.Client
inner innerParams
}
// WithDefaults hydrates default values in the get me params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *GetMeParams) WithDefaults() *GetMeParams {
o.SetDefaults()
return o
}
// SetDefaults hydrates default values in the get me params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *GetMeParams) SetDefaults() {
// no default values defined for this parameter
}
// WithTimeout adds the timeout to the get me params.
func (o *GetMeParams) WithTimeout(timeout time.Duration) *GetMeParams {
o.SetTimeout(timeout)
return o
}
// SetTimeout adds the timeout to the get me params.
func (o *GetMeParams) SetTimeout(timeout time.Duration) {
o.inner.timeout = timeout
}
// WithContext adds the context to the get me params.
//
// Deprecated: use the operation call with context to pass the context instead of [GetMeParams].
func (o *GetMeParams) WithContext(ctx context.Context) *GetMeParams {
o.SetContext(ctx)
return o
}
// SetContext adds the context to the get me params.
//
// Deprecated: use the operation call with context to pass the context instead of [GetMeParams].
func (o *GetMeParams) SetContext(ctx context.Context) {
o.inner.ctx = ctx
}
// WithHTTPClient adds the HTTPClient to the get me params.
func (o *GetMeParams) WithHTTPClient(client *http.Client) *GetMeParams {
o.SetHTTPClient(client)
return o
}
// SetHTTPClient adds the HTTPClient to the get me params.
func (o *GetMeParams) SetHTTPClient(client *http.Client) {
o.HTTPClient = client
}
// WriteToRequest writes these params to a [runtime.ClientRequest].
func (o *GetMeParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
if err := r.SetTimeout(o.inner.timeout); err != nil {
return err
}
var res []error
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}