// Code generated by go-swagger; DO NOT EDIT. package authentication // 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" strfmt "github.com/go-openapi/strfmt" ) // NewGetMeParams creates a new GetMeParams object // with the default values initialized. func NewGetMeParams() *GetMeParams { return &GetMeParams{ timeout: cr.DefaultTimeout, } } // NewGetMeParamsWithTimeout creates a new GetMeParams object // with the default values initialized, and the ability to set a timeout on a request func NewGetMeParamsWithTimeout(timeout time.Duration) *GetMeParams { return &GetMeParams{ timeout: timeout, } } // NewGetMeParamsWithContext creates a new GetMeParams object // with the default values initialized, and the ability to set a context for a request func NewGetMeParamsWithContext(ctx context.Context) *GetMeParams { return &GetMeParams{ Context: ctx, } } // NewGetMeParamsWithHTTPClient creates a new GetMeParams object // with the default values initialized, and 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 { timeout time.Duration Context context.Context HTTPClient *http.Client } // 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.timeout = timeout } // WithContext adds the context to the get me params func (o *GetMeParams) WithContext(ctx context.Context) *GetMeParams { o.SetContext(ctx) return o } // SetContext adds the context to the get me params func (o *GetMeParams) SetContext(ctx context.Context) { o.Context = 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 swagger request func (o *GetMeParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error { if err := r.SetTimeout(o.timeout); err != nil { return err } var res []error if len(res) > 0 { return errors.CompositeValidationError(res...) } return nil }