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