3 Star 0 Fork 0

Gitee 极速下载 / go-swagger

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/go-swagger/go-swagger
克隆/下载
elapse_parameters.go 2.43 KB
一键复制 编辑 原始数据 按行查看 历史
fredbi 提交于 2018-07-04 17:04 . regen examples
// Code generated by go-swagger; DO NOT EDIT.
package operations
// 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"
"github.com/go-openapi/errors"
"github.com/go-openapi/runtime/middleware"
"github.com/go-openapi/swag"
"github.com/go-openapi/validate"
strfmt "github.com/go-openapi/strfmt"
)
// NewElapseParams creates a new ElapseParams object
// no default values defined in spec.
func NewElapseParams() ElapseParams {
return ElapseParams{}
}
// ElapseParams contains all the bound params for the elapse operation
// typically these are obtained from a http.Request
//
// swagger:parameters elapse
type ElapseParams struct {
// HTTP Request Object
HTTPRequest *http.Request `json:"-"`
/*How many seconds to count down
Required: true
Maximum: 30
Minimum: 2
In: path
*/
Length int64
}
// BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface
// for simple values it will use straight method calls.
//
// To ensure default values, the struct must have been initialized with NewElapseParams() beforehand.
func (o *ElapseParams) BindRequest(r *http.Request, route *middleware.MatchedRoute) error {
var res []error
o.HTTPRequest = r
rLength, rhkLength, _ := route.Params.GetOK("length")
if err := o.bindLength(rLength, rhkLength, route.Formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
// bindLength binds and validates parameter Length from path.
func (o *ElapseParams) bindLength(rawData []string, hasKey bool, formats strfmt.Registry) error {
var raw string
if len(rawData) > 0 {
raw = rawData[len(rawData)-1]
}
// Required: true
// Parameter is provided by construction from the route
value, err := swag.ConvertInt64(raw)
if err != nil {
return errors.InvalidType("length", "path", "int64", raw)
}
o.Length = value
if err := o.validateLength(formats); err != nil {
return err
}
return nil
}
// validateLength carries on validations for parameter Length
func (o *ElapseParams) validateLength(formats strfmt.Registry) error {
if err := validate.MinimumInt("length", "path", int64(o.Length), 2, false); err != nil {
return err
}
if err := validate.MaximumInt("length", "path", int64(o.Length), 30, false); err != nil {
return err
}
return nil
}
马建仓 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

搜索帮助

344bd9b3 5694891 D2dac590 5694891