// 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" "code.tnxs.net/vernonkeenan/lib/api/members/members_models" "github.com/go-openapi/errors" "github.com/go-openapi/runtime" cr "github.com/go-openapi/runtime/client" "github.com/go-openapi/strfmt" ) // NewCreateSessionParams creates a new CreateSessionParams 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 NewCreateSessionParams() *CreateSessionParams { return NewCreateSessionParamsWithTimeout(cr.DefaultTimeout) } // NewCreateSessionParamsWithTimeout creates a new CreateSessionParams object // with the ability to set a timeout on a request. func NewCreateSessionParamsWithTimeout(timeout time.Duration) *CreateSessionParams { return &CreateSessionParams{ inner: innerParams{ timeout: timeout, }, } } // NewCreateSessionParamsWithContext creates a new CreateSessionParams object // with the ability to set a context for a request. // // Deprecated: use the operation call with context to pass the context instead of [CreateSessionParams]. func NewCreateSessionParamsWithContext(ctx context.Context) *CreateSessionParams { return &CreateSessionParams{ inner: innerParams{ ctx: ctx, }, } } // NewCreateSessionParamsWithHTTPClient creates a new CreateSessionParams object // with the ability to set a custom HTTPClient for a request. func NewCreateSessionParamsWithHTTPClient(client *http.Client) *CreateSessionParams { return &CreateSessionParams{ HTTPClient: client, } } /* CreateSessionParams contains all the parameters to send to the API endpoint for the create session operation. Typically these are written to a http.Request. */ type CreateSessionParams struct { // Credentials. Credentials *members_models.Credentials HTTPClient *http.Client inner innerParams } // WithDefaults hydrates default values in the create session params (not the query body). // // All values with no default are reset to their zero value. func (o *CreateSessionParams) WithDefaults() *CreateSessionParams { o.SetDefaults() return o } // SetDefaults hydrates default values in the create session params (not the query body). // // All values with no default are reset to their zero value. func (o *CreateSessionParams) SetDefaults() { // no default values defined for this parameter } // WithTimeout adds the timeout to the create session params. func (o *CreateSessionParams) WithTimeout(timeout time.Duration) *CreateSessionParams { o.SetTimeout(timeout) return o } // SetTimeout adds the timeout to the create session params. func (o *CreateSessionParams) SetTimeout(timeout time.Duration) { o.inner.timeout = timeout } // WithContext adds the context to the create session params. // // Deprecated: use the operation call with context to pass the context instead of [CreateSessionParams]. func (o *CreateSessionParams) WithContext(ctx context.Context) *CreateSessionParams { o.SetContext(ctx) return o } // SetContext adds the context to the create session params. // // Deprecated: use the operation call with context to pass the context instead of [CreateSessionParams]. func (o *CreateSessionParams) SetContext(ctx context.Context) { o.inner.ctx = ctx } // WithHTTPClient adds the HTTPClient to the create session params. func (o *CreateSessionParams) WithHTTPClient(client *http.Client) *CreateSessionParams { o.SetHTTPClient(client) return o } // SetHTTPClient adds the HTTPClient to the create session params. func (o *CreateSessionParams) SetHTTPClient(client *http.Client) { o.HTTPClient = client } // WithCredentials adds the credentials to the create session params. func (o *CreateSessionParams) WithCredentials(credentials *members_models.Credentials) *CreateSessionParams { o.SetCredentials(credentials) return o } // SetCredentials adds the credentials to the create session params. func (o *CreateSessionParams) SetCredentials(credentials *members_models.Credentials) { o.Credentials = credentials } // WriteToRequest writes these params to a [runtime.ClientRequest]. func (o *CreateSessionParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error { if err := r.SetTimeout(o.inner.timeout); err != nil { return err } var res []error if o.Credentials != nil { if err := r.SetBodyParam(o.Credentials); err != nil { return err } } if len(res) > 0 { return errors.CompositeValidationError(res...) } return nil }