// Code generated by go-swagger; DO NOT EDIT. // All Code Copyright(c) 2018-2021 by Taxnexus, Inc. // All rights reserved worldwide. // Proprietary product; unlicensed use is not allowed package template // 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" "code.tnxs.net/taxnexus/lib/api/devops/devops_models" ) // NewPostTemplatesParams creates a new PostTemplatesParams object // with the default values initialized. func NewPostTemplatesParams() *PostTemplatesParams { var () return &PostTemplatesParams{ timeout: cr.DefaultTimeout, } } // NewPostTemplatesParamsWithTimeout creates a new PostTemplatesParams object // with the default values initialized, and the ability to set a timeout on a request func NewPostTemplatesParamsWithTimeout(timeout time.Duration) *PostTemplatesParams { var () return &PostTemplatesParams{ timeout: timeout, } } // NewPostTemplatesParamsWithContext creates a new PostTemplatesParams object // with the default values initialized, and the ability to set a context for a request func NewPostTemplatesParamsWithContext(ctx context.Context) *PostTemplatesParams { var () return &PostTemplatesParams{ Context: ctx, } } // NewPostTemplatesParamsWithHTTPClient creates a new PostTemplatesParams object // with the default values initialized, and the ability to set a custom HTTPClient for a request func NewPostTemplatesParamsWithHTTPClient(client *http.Client) *PostTemplatesParams { var () 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 *devops_models.TemplateRequest timeout time.Duration Context context.Context HTTPClient *http.Client } // 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.timeout = timeout } // WithContext adds the context to the post templates params func (o *PostTemplatesParams) WithContext(ctx context.Context) *PostTemplatesParams { o.SetContext(ctx) return o } // SetContext adds the context to the post templates params func (o *PostTemplatesParams) SetContext(ctx context.Context) { o.Context = 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 *devops_models.TemplateRequest) *PostTemplatesParams { o.SetTemplateRequest(templateRequest) return o } // SetTemplateRequest adds the templateRequest to the post templates params func (o *PostTemplatesParams) SetTemplateRequest(templateRequest *devops_models.TemplateRequest) { o.TemplateRequest = templateRequest } // WriteToRequest writes these params to a swagger request func (o *PostTemplatesParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error { if err := r.SetTimeout(o.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 }