Versions in this module Expand all Collapse all v1 v1.12.2 Dec 24, 2020 v1.12.1 Dec 8, 2020 Changes in this version + func ConvertParams(methodParams []*MethodParam, methodType reflect.Type, ctx *beecontext.Context) (result []reflect.Value) + type MethodParam struct + func Make(list ...*MethodParam) []*MethodParam + func New(name string, opts ...MethodParamOption) *MethodParam + func (mp *MethodParam) String() string + type MethodParamOption func(*MethodParam) + var InBody MethodParamOption = func(p *MethodParam) { ... } + var InHeader MethodParamOption = func(p *MethodParam) { ... } + var InPath MethodParamOption = func(p *MethodParam) { ... } + var IsRequired MethodParamOption = func(p *MethodParam) { ... } + func Default(defaultValue interface{}) MethodParamOption