mirror of https://github.com/vernonkeenan/lib
158 lines
4.5 KiB
Go
158 lines
4.5 KiB
Go
// 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
|
|
|
|
// 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/vernonkeenan/lib/api/members/members_models"
|
|
)
|
|
|
|
// 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 &PostTemplatesParams{
|
|
timeout: 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{
|
|
timeout: timeout,
|
|
}
|
|
}
|
|
|
|
// NewPostTemplatesParamsWithContext creates a new PostTemplatesParams object
|
|
// with the ability to set a context for a request.
|
|
func NewPostTemplatesParamsWithContext(ctx context.Context) *PostTemplatesParams {
|
|
return &PostTemplatesParams{
|
|
Context: 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
|
|
|
|
timeout time.Duration
|
|
Context context.Context
|
|
HTTPClient *http.Client
|
|
}
|
|
|
|
// 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.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 *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 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
|
|
}
|