3 Star 2 Fork 0

Gitee 极速下载/go-swagger

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/go-swagger/go-swagger
克隆/下载
get_task_details_parameters.go 3.60 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"
)
// NewGetTaskDetailsParams creates a new GetTaskDetailsParams object
// with the default values initialized.
func NewGetTaskDetailsParams() *GetTaskDetailsParams {
var ()
return &GetTaskDetailsParams{
timeout: cr.DefaultTimeout,
}
}
// NewGetTaskDetailsParamsWithTimeout creates a new GetTaskDetailsParams object
// with the default values initialized, and the ability to set a timeout on a request
func NewGetTaskDetailsParamsWithTimeout(timeout time.Duration) *GetTaskDetailsParams {
var ()
return &GetTaskDetailsParams{
timeout: timeout,
}
}
// NewGetTaskDetailsParamsWithContext creates a new GetTaskDetailsParams object
// with the default values initialized, and the ability to set a context for a request
func NewGetTaskDetailsParamsWithContext(ctx context.Context) *GetTaskDetailsParams {
var ()
return &GetTaskDetailsParams{
Context: ctx,
}
}
// NewGetTaskDetailsParamsWithHTTPClient creates a new GetTaskDetailsParams object
// with the default values initialized, and the ability to set a custom HTTPClient for a request
func NewGetTaskDetailsParamsWithHTTPClient(client *http.Client) *GetTaskDetailsParams {
var ()
return &GetTaskDetailsParams{
HTTPClient: client,
}
}
/*GetTaskDetailsParams contains all the parameters to send to the API endpoint
for the get task details operation typically these are written to a http.Request
*/
type GetTaskDetailsParams struct {
/*ID
The id of the item
*/
ID int64
timeout time.Duration
Context context.Context
HTTPClient *http.Client
}
// WithTimeout adds the timeout to the get task details params
func (o *GetTaskDetailsParams) WithTimeout(timeout time.Duration) *GetTaskDetailsParams {
o.SetTimeout(timeout)
return o
}
// SetTimeout adds the timeout to the get task details params
func (o *GetTaskDetailsParams) SetTimeout(timeout time.Duration) {
o.timeout = timeout
}
// WithContext adds the context to the get task details params
func (o *GetTaskDetailsParams) WithContext(ctx context.Context) *GetTaskDetailsParams {
o.SetContext(ctx)
return o
}
// SetContext adds the context to the get task details params
func (o *GetTaskDetailsParams) SetContext(ctx context.Context) {
o.Context = ctx
}
// WithHTTPClient adds the HTTPClient to the get task details params
func (o *GetTaskDetailsParams) WithHTTPClient(client *http.Client) *GetTaskDetailsParams {
o.SetHTTPClient(client)
return o
}
// SetHTTPClient adds the HTTPClient to the get task details params
func (o *GetTaskDetailsParams) SetHTTPClient(client *http.Client) {
o.HTTPClient = client
}
// WithID adds the id to the get task details params
func (o *GetTaskDetailsParams) WithID(id int64) *GetTaskDetailsParams {
o.SetID(id)
return o
}
// SetID adds the id to the get task details params
func (o *GetTaskDetailsParams) SetID(id int64) {
o.ID = id
}
// WriteToRequest writes these params to a swagger request
func (o *GetTaskDetailsParams) 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/mirrors/go-swagger.git
git@gitee.com:mirrors/go-swagger.git
mirrors
go-swagger
go-swagger
v0.19.0

搜索帮助