lib/api/blaze/blaze_client/members/get_member_parameters.go

140 lines
3.6 KiB
Go

// Code generated by go-swagger; DO NOT EDIT.
// All Code Copyright(c) 2018-2020 by Taxnexus, Inc.
// All rights reserved worldwide.
// Proprietary product; unlicensed use is not allowed
package members
// 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"
"github.com/go-openapi/strfmt"
)
// NewGetMemberParams creates a new GetMemberParams object
// with the default values initialized.
func NewGetMemberParams() *GetMemberParams {
var ()
return &GetMemberParams{
timeout: cr.DefaultTimeout,
}
}
// NewGetMemberParamsWithTimeout creates a new GetMemberParams object
// with the default values initialized, and the ability to set a timeout on a request
func NewGetMemberParamsWithTimeout(timeout time.Duration) *GetMemberParams {
var ()
return &GetMemberParams{
timeout: timeout,
}
}
// NewGetMemberParamsWithContext creates a new GetMemberParams object
// with the default values initialized, and the ability to set a context for a request
func NewGetMemberParamsWithContext(ctx context.Context) *GetMemberParams {
var ()
return &GetMemberParams{
Context: ctx,
}
}
// NewGetMemberParamsWithHTTPClient creates a new GetMemberParams object
// with the default values initialized, and the ability to set a custom HTTPClient for a request
func NewGetMemberParamsWithHTTPClient(client *http.Client) *GetMemberParams {
var ()
return &GetMemberParams{
HTTPClient: client,
}
}
/*GetMemberParams contains all the parameters to send to the API endpoint
for the get member operation typically these are written to a http.Request
*/
type GetMemberParams struct {
/*MemberID
The Blaze Member Object Id
*/
MemberID string
timeout time.Duration
Context context.Context
HTTPClient *http.Client
}
// WithTimeout adds the timeout to the get member params
func (o *GetMemberParams) WithTimeout(timeout time.Duration) *GetMemberParams {
o.SetTimeout(timeout)
return o
}
// SetTimeout adds the timeout to the get member params
func (o *GetMemberParams) SetTimeout(timeout time.Duration) {
o.timeout = timeout
}
// WithContext adds the context to the get member params
func (o *GetMemberParams) WithContext(ctx context.Context) *GetMemberParams {
o.SetContext(ctx)
return o
}
// SetContext adds the context to the get member params
func (o *GetMemberParams) SetContext(ctx context.Context) {
o.Context = ctx
}
// WithHTTPClient adds the HTTPClient to the get member params
func (o *GetMemberParams) WithHTTPClient(client *http.Client) *GetMemberParams {
o.SetHTTPClient(client)
return o
}
// SetHTTPClient adds the HTTPClient to the get member params
func (o *GetMemberParams) SetHTTPClient(client *http.Client) {
o.HTTPClient = client
}
// WithMemberID adds the memberID to the get member params
func (o *GetMemberParams) WithMemberID(memberID string) *GetMemberParams {
o.SetMemberID(memberID)
return o
}
// SetMemberID adds the memberId to the get member params
func (o *GetMemberParams) SetMemberID(memberID string) {
o.MemberID = memberID
}
// WriteToRequest writes these params to a swagger request
func (o *GetMemberParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
if err := r.SetTimeout(o.timeout); err != nil {
return err
}
var res []error
// path param memberId
if err := r.SetPathParam("memberId", o.MemberID); err != nil {
return err
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}