1 Star 0 Fork 0

KathentGitee/go-swagger

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
delete_task_parameters.go 3.42 KB
一键复制 编辑 原始数据 按行查看 历史
Ivan Porto Carrero 提交于 2018-12-23 03:25 +08:00 . update vendor and regen examples
// 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"
)
// NewDeleteTaskParams creates a new DeleteTaskParams object
// with the default values initialized.
func NewDeleteTaskParams() *DeleteTaskParams {
var ()
return &DeleteTaskParams{
timeout: cr.DefaultTimeout,
}
}
// NewDeleteTaskParamsWithTimeout creates a new DeleteTaskParams object
// with the default values initialized, and the ability to set a timeout on a request
func NewDeleteTaskParamsWithTimeout(timeout time.Duration) *DeleteTaskParams {
var ()
return &DeleteTaskParams{
timeout: timeout,
}
}
// NewDeleteTaskParamsWithContext creates a new DeleteTaskParams object
// with the default values initialized, and the ability to set a context for a request
func NewDeleteTaskParamsWithContext(ctx context.Context) *DeleteTaskParams {
var ()
return &DeleteTaskParams{
Context: ctx,
}
}
// NewDeleteTaskParamsWithHTTPClient creates a new DeleteTaskParams object
// with the default values initialized, and the ability to set a custom HTTPClient for a request
func NewDeleteTaskParamsWithHTTPClient(client *http.Client) *DeleteTaskParams {
var ()
return &DeleteTaskParams{
HTTPClient: client,
}
}
/*DeleteTaskParams contains all the parameters to send to the API endpoint
for the delete task operation typically these are written to a http.Request
*/
type DeleteTaskParams struct {
/*ID
The id of the item
*/
ID int64
timeout time.Duration
Context context.Context
HTTPClient *http.Client
}
// WithTimeout adds the timeout to the delete task params
func (o *DeleteTaskParams) WithTimeout(timeout time.Duration) *DeleteTaskParams {
o.SetTimeout(timeout)
return o
}
// SetTimeout adds the timeout to the delete task params
func (o *DeleteTaskParams) SetTimeout(timeout time.Duration) {
o.timeout = timeout
}
// WithContext adds the context to the delete task params
func (o *DeleteTaskParams) WithContext(ctx context.Context) *DeleteTaskParams {
o.SetContext(ctx)
return o
}
// SetContext adds the context to the delete task params
func (o *DeleteTaskParams) SetContext(ctx context.Context) {
o.Context = ctx
}
// WithHTTPClient adds the HTTPClient to the delete task params
func (o *DeleteTaskParams) WithHTTPClient(client *http.Client) *DeleteTaskParams {
o.SetHTTPClient(client)
return o
}
// SetHTTPClient adds the HTTPClient to the delete task params
func (o *DeleteTaskParams) SetHTTPClient(client *http.Client) {
o.HTTPClient = client
}
// WithID adds the id to the delete task params
func (o *DeleteTaskParams) WithID(id int64) *DeleteTaskParams {
o.SetID(id)
return o
}
// SetID adds the id to the delete task params
func (o *DeleteTaskParams) SetID(id int64) {
o.ID = id
}
// WriteToRequest writes these params to a swagger request
func (o *DeleteTaskParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
if err := r.SetTimeout(o.timeout); err != nil {
return err
}
var res []error
// 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
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/kathent/go-swagger.git
git@gitee.com:kathent/go-swagger.git
kathent
go-swagger
go-swagger
v0.19.0

搜索帮助