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

137 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 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"
)
// NewDeleteSessionParams creates a new DeleteSessionParams 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 NewDeleteSessionParams() *DeleteSessionParams {
return NewDeleteSessionParamsWithTimeout(cr.DefaultTimeout)
}
// NewDeleteSessionParamsWithTimeout creates a new DeleteSessionParams object
// with the ability to set a timeout on a request.
func NewDeleteSessionParamsWithTimeout(timeout time.Duration) *DeleteSessionParams {
return &DeleteSessionParams{
inner: innerParams{
timeout: timeout,
},
}
}
// NewDeleteSessionParamsWithContext creates a new DeleteSessionParams object
// with the ability to set a context for a request.
//
// Deprecated: use the operation call with context to pass the context instead of [DeleteSessionParams].
func NewDeleteSessionParamsWithContext(ctx context.Context) *DeleteSessionParams {
return &DeleteSessionParams{
inner: innerParams{
ctx: ctx,
},
}
}
// NewDeleteSessionParamsWithHTTPClient creates a new DeleteSessionParams object
// with the ability to set a custom HTTPClient for a request.
func NewDeleteSessionParamsWithHTTPClient(client *http.Client) *DeleteSessionParams {
return &DeleteSessionParams{
HTTPClient: client,
}
}
/*
DeleteSessionParams contains all the parameters to send to the API endpoint
for the delete session operation.
Typically these are written to a http.Request.
*/
type DeleteSessionParams struct {
HTTPClient *http.Client
inner innerParams
}
// WithDefaults hydrates default values in the delete session params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *DeleteSessionParams) WithDefaults() *DeleteSessionParams {
o.SetDefaults()
return o
}
// SetDefaults hydrates default values in the delete session params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *DeleteSessionParams) SetDefaults() {
// no default values defined for this parameter
}
// WithTimeout adds the timeout to the delete session params.
func (o *DeleteSessionParams) WithTimeout(timeout time.Duration) *DeleteSessionParams {
o.SetTimeout(timeout)
return o
}
// SetTimeout adds the timeout to the delete session params.
func (o *DeleteSessionParams) SetTimeout(timeout time.Duration) {
o.inner.timeout = timeout
}
// WithContext adds the context to the delete session params.
//
// Deprecated: use the operation call with context to pass the context instead of [DeleteSessionParams].
func (o *DeleteSessionParams) WithContext(ctx context.Context) *DeleteSessionParams {
o.SetContext(ctx)
return o
}
// SetContext adds the context to the delete session params.
//
// Deprecated: use the operation call with context to pass the context instead of [DeleteSessionParams].
func (o *DeleteSessionParams) SetContext(ctx context.Context) {
o.inner.ctx = ctx
}
// WithHTTPClient adds the HTTPClient to the delete session params.
func (o *DeleteSessionParams) WithHTTPClient(client *http.Client) *DeleteSessionParams {
o.SetHTTPClient(client)
return o
}
// SetHTTPClient adds the HTTPClient to the delete session params.
func (o *DeleteSessionParams) SetHTTPClient(client *http.Client) {
o.HTTPClient = client
}
// WriteToRequest writes these params to a [runtime.ClientRequest].
func (o *DeleteSessionParams) 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
}