lib/api/members/members_client/credentials/change_password_parameters.go

182 lines
5.5 KiB
Go
Raw Permalink 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 credentials
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"
)
// NewChangePasswordParams creates a new ChangePasswordParams 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 NewChangePasswordParams() *ChangePasswordParams {
return NewChangePasswordParamsWithTimeout(cr.DefaultTimeout)
}
// NewChangePasswordParamsWithTimeout creates a new ChangePasswordParams object
// with the ability to set a timeout on a request.
func NewChangePasswordParamsWithTimeout(timeout time.Duration) *ChangePasswordParams {
return &ChangePasswordParams{
inner: innerParams{
timeout: timeout,
},
}
}
// NewChangePasswordParamsWithContext creates a new ChangePasswordParams object
// with the ability to set a context for a request.
//
// Deprecated: use the operation call with context to pass the context instead of [ChangePasswordParams].
func NewChangePasswordParamsWithContext(ctx context.Context) *ChangePasswordParams {
return &ChangePasswordParams{
inner: innerParams{
ctx: ctx,
},
}
}
// NewChangePasswordParamsWithHTTPClient creates a new ChangePasswordParams object
// with the ability to set a custom HTTPClient for a request.
func NewChangePasswordParamsWithHTTPClient(client *http.Client) *ChangePasswordParams {
return &ChangePasswordParams{
HTTPClient: client,
}
}
/*
ChangePasswordParams contains all the parameters to send to the API endpoint
for the change password operation.
Typically these are written to a http.Request.
*/
type ChangePasswordParams struct {
// XRequestID.
//
// Optional bounded correlation identifier stored with membership audit events.
XRequestID *string
// PasswordChangeRequest.
PasswordChangeRequest *members_models.PasswordChangeRequest
HTTPClient *http.Client
inner innerParams
}
// WithDefaults hydrates default values in the change password params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *ChangePasswordParams) WithDefaults() *ChangePasswordParams {
o.SetDefaults()
return o
}
// SetDefaults hydrates default values in the change password params (not the query body).
//
// All values with no default are reset to their zero value.
func (o *ChangePasswordParams) SetDefaults() {
// no default values defined for this parameter
}
// WithTimeout adds the timeout to the change password params.
func (o *ChangePasswordParams) WithTimeout(timeout time.Duration) *ChangePasswordParams {
o.SetTimeout(timeout)
return o
}
// SetTimeout adds the timeout to the change password params.
func (o *ChangePasswordParams) SetTimeout(timeout time.Duration) {
o.inner.timeout = timeout
}
// WithContext adds the context to the change password params.
//
// Deprecated: use the operation call with context to pass the context instead of [ChangePasswordParams].
func (o *ChangePasswordParams) WithContext(ctx context.Context) *ChangePasswordParams {
o.SetContext(ctx)
return o
}
// SetContext adds the context to the change password params.
//
// Deprecated: use the operation call with context to pass the context instead of [ChangePasswordParams].
func (o *ChangePasswordParams) SetContext(ctx context.Context) {
o.inner.ctx = ctx
}
// WithHTTPClient adds the HTTPClient to the change password params.
func (o *ChangePasswordParams) WithHTTPClient(client *http.Client) *ChangePasswordParams {
o.SetHTTPClient(client)
return o
}
// SetHTTPClient adds the HTTPClient to the change password params.
func (o *ChangePasswordParams) SetHTTPClient(client *http.Client) {
o.HTTPClient = client
}
// WithXRequestID adds the xRequestID to the change password params.
func (o *ChangePasswordParams) WithXRequestID(xRequestID *string) *ChangePasswordParams {
o.SetXRequestID(xRequestID)
return o
}
// SetXRequestID adds the xRequestId to the change password params.
func (o *ChangePasswordParams) SetXRequestID(xRequestID *string) {
o.XRequestID = xRequestID
}
// WithPasswordChangeRequest adds the passwordChangeRequest to the change password params.
func (o *ChangePasswordParams) WithPasswordChangeRequest(passwordChangeRequest *members_models.PasswordChangeRequest) *ChangePasswordParams {
o.SetPasswordChangeRequest(passwordChangeRequest)
return o
}
// SetPasswordChangeRequest adds the passwordChangeRequest to the change password params.
func (o *ChangePasswordParams) SetPasswordChangeRequest(passwordChangeRequest *members_models.PasswordChangeRequest) {
o.PasswordChangeRequest = passwordChangeRequest
}
// WriteToRequest writes these params to a [runtime.ClientRequest].
func (o *ChangePasswordParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
if err := r.SetTimeout(o.inner.timeout); err != nil {
return err
}
var res []error
if o.XRequestID != nil {
// header param X-Request-ID
if err := r.SetHeaderParam("X-Request-ID", *o.XRequestID); err != nil {
return err
}
}
if o.PasswordChangeRequest != nil {
if err := r.SetBodyParam(o.PasswordChangeRequest); err != nil {
return err
}
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}