3 Star 2 Fork 0

Gitee 极速下载/go-swagger

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/go-swagger/go-swagger
克隆/下载
create_task_parameters.go 3.51 KB
一键复制 编辑 原始数据 按行查看 历史
// Code generated by go-swagger; DO NOT EDIT.
package tasks
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"net/http"
"time"
"golang.org/x/net/context"
"github.com/go-openapi/errors"
"github.com/go-openapi/runtime"
cr "github.com/go-openapi/runtime/client"
strfmt "github.com/go-openapi/strfmt"
models "github.com/go-swagger/go-swagger/examples/task-tracker/models"
)
// NewCreateTaskParams creates a new CreateTaskParams object
// with the default values initialized.
func NewCreateTaskParams() *CreateTaskParams {
var ()
return &CreateTaskParams{
timeout: cr.DefaultTimeout,
}
}
// NewCreateTaskParamsWithTimeout creates a new CreateTaskParams object
// with the default values initialized, and the ability to set a timeout on a request
func NewCreateTaskParamsWithTimeout(timeout time.Duration) *CreateTaskParams {
var ()
return &CreateTaskParams{
timeout: timeout,
}
}
// NewCreateTaskParamsWithContext creates a new CreateTaskParams object
// with the default values initialized, and the ability to set a context for a request
func NewCreateTaskParamsWithContext(ctx context.Context) *CreateTaskParams {
var ()
return &CreateTaskParams{
Context: ctx,
}
}
// NewCreateTaskParamsWithHTTPClient creates a new CreateTaskParams object
// with the default values initialized, and the ability to set a custom HTTPClient for a request
func NewCreateTaskParamsWithHTTPClient(client *http.Client) *CreateTaskParams {
var ()
return &CreateTaskParams{
HTTPClient: client,
}
}
/*CreateTaskParams contains all the parameters to send to the API endpoint
for the create task operation typically these are written to a http.Request
*/
type CreateTaskParams struct {
/*Body
The task to create
*/
Body *models.Task
timeout time.Duration
Context context.Context
HTTPClient *http.Client
}
// WithTimeout adds the timeout to the create task params
func (o *CreateTaskParams) WithTimeout(timeout time.Duration) *CreateTaskParams {
o.SetTimeout(timeout)
return o
}
// SetTimeout adds the timeout to the create task params
func (o *CreateTaskParams) SetTimeout(timeout time.Duration) {
o.timeout = timeout
}
// WithContext adds the context to the create task params
func (o *CreateTaskParams) WithContext(ctx context.Context) *CreateTaskParams {
o.SetContext(ctx)
return o
}
// SetContext adds the context to the create task params
func (o *CreateTaskParams) SetContext(ctx context.Context) {
o.Context = ctx
}
// WithHTTPClient adds the HTTPClient to the create task params
func (o *CreateTaskParams) WithHTTPClient(client *http.Client) *CreateTaskParams {
o.SetHTTPClient(client)
return o
}
// SetHTTPClient adds the HTTPClient to the create task params
func (o *CreateTaskParams) SetHTTPClient(client *http.Client) {
o.HTTPClient = client
}
// WithBody adds the body to the create task params
func (o *CreateTaskParams) WithBody(body *models.Task) *CreateTaskParams {
o.SetBody(body)
return o
}
// SetBody adds the body to the create task params
func (o *CreateTaskParams) SetBody(body *models.Task) {
o.Body = body
}
// WriteToRequest writes these params to a swagger request
func (o *CreateTaskParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
if err := r.SetTimeout(o.timeout); err != nil {
return err
}
var res []error
if o.Body != nil {
if err := r.SetBodyParam(o.Body); err != nil {
return err
}
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/mirrors/go-swagger.git
git@gitee.com:mirrors/go-swagger.git
mirrors
go-swagger
go-swagger
v0.17.0

搜索帮助