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

155 lines
4.7 KiB
Go
Raw Normal View History

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