1 Star 0 Fork 0

KathentGitee / go-swagger

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
update_task_parameters.go 3.90 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 (
"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/swag"
strfmt "github.com/go-openapi/strfmt"
models "github.com/go-swagger/go-swagger/examples/task-tracker/models"
)
// NewUpdateTaskParams creates a new UpdateTaskParams object
// with the default values initialized.
func NewUpdateTaskParams() *UpdateTaskParams {
var ()
return &UpdateTaskParams{
timeout: cr.DefaultTimeout,
}
}
// NewUpdateTaskParamsWithTimeout creates a new UpdateTaskParams object
// with the default values initialized, and the ability to set a timeout on a request
func NewUpdateTaskParamsWithTimeout(timeout time.Duration) *UpdateTaskParams {
var ()
return &UpdateTaskParams{
timeout: timeout,
}
}
// NewUpdateTaskParamsWithContext creates a new UpdateTaskParams object
// with the default values initialized, and the ability to set a context for a request
func NewUpdateTaskParamsWithContext(ctx context.Context) *UpdateTaskParams {
var ()
return &UpdateTaskParams{
Context: ctx,
}
}
// NewUpdateTaskParamsWithHTTPClient creates a new UpdateTaskParams object
// with the default values initialized, and the ability to set a custom HTTPClient for a request
func NewUpdateTaskParamsWithHTTPClient(client *http.Client) *UpdateTaskParams {
var ()
return &UpdateTaskParams{
HTTPClient: client,
}
}
/*UpdateTaskParams contains all the parameters to send to the API endpoint
for the update task operation typically these are written to a http.Request
*/
type UpdateTaskParams struct {
/*Body
The task to update
*/
Body *models.Task
/*ID
The id of the item
*/
ID int64
timeout time.Duration
Context context.Context
HTTPClient *http.Client
}
// WithTimeout adds the timeout to the update task params
func (o *UpdateTaskParams) WithTimeout(timeout time.Duration) *UpdateTaskParams {
o.SetTimeout(timeout)
return o
}
// SetTimeout adds the timeout to the update task params
func (o *UpdateTaskParams) SetTimeout(timeout time.Duration) {
o.timeout = timeout
}
// WithContext adds the context to the update task params
func (o *UpdateTaskParams) WithContext(ctx context.Context) *UpdateTaskParams {
o.SetContext(ctx)
return o
}
// SetContext adds the context to the update task params
func (o *UpdateTaskParams) SetContext(ctx context.Context) {
o.Context = ctx
}
// WithHTTPClient adds the HTTPClient to the update task params
func (o *UpdateTaskParams) WithHTTPClient(client *http.Client) *UpdateTaskParams {
o.SetHTTPClient(client)
return o
}
// SetHTTPClient adds the HTTPClient to the update task params
func (o *UpdateTaskParams) SetHTTPClient(client *http.Client) {
o.HTTPClient = client
}
// WithBody adds the body to the update task params
func (o *UpdateTaskParams) WithBody(body *models.Task) *UpdateTaskParams {
o.SetBody(body)
return o
}
// SetBody adds the body to the update task params
func (o *UpdateTaskParams) SetBody(body *models.Task) {
o.Body = body
}
// WithID adds the id to the update task params
func (o *UpdateTaskParams) WithID(id int64) *UpdateTaskParams {
o.SetID(id)
return o
}
// SetID adds the id to the update task params
func (o *UpdateTaskParams) SetID(id int64) {
o.ID = id
}
// WriteToRequest writes these params to a swagger request
func (o *UpdateTaskParams) 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
}
}
// path param id
if err := r.SetPathParam("id", swag.FormatInt64(o.ID)); err != nil {
return err
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
Go
1
https://gitee.com/kathent/go-swagger.git
git@gitee.com:kathent/go-swagger.git
kathent
go-swagger
go-swagger
v0.19.0

搜索帮助