This commit is contained in:
74
build/app/restapi/operations/delete_parameters.go
Normal file
74
build/app/restapi/operations/delete_parameters.go
Normal file
@@ -0,0 +1,74 @@
|
||||
// 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/strfmt"
|
||||
)
|
||||
|
||||
// NewDeleteParams creates a new DeleteParams object
|
||||
//
|
||||
// There are no default values defined in the spec.
|
||||
func NewDeleteParams() DeleteParams {
|
||||
|
||||
return DeleteParams{}
|
||||
}
|
||||
|
||||
// DeleteParams contains all the bound params for the delete operation
|
||||
// typically these are obtained from a http.Request
|
||||
//
|
||||
// swagger:parameters Delete
|
||||
type DeleteParams struct {
|
||||
|
||||
// HTTP Request Object
|
||||
HTTPRequest *http.Request `json:"-"`
|
||||
|
||||
/*On cancel Direktiv sends a DELETE request to
|
||||
the action with id in the header
|
||||
|
||||
In: header
|
||||
*/
|
||||
DirektivActionID *string
|
||||
}
|
||||
|
||||
// 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 NewDeleteParams() beforehand.
|
||||
func (o *DeleteParams) BindRequest(r *http.Request, route *middleware.MatchedRoute) error {
|
||||
var res []error
|
||||
|
||||
o.HTTPRequest = r
|
||||
|
||||
if err := o.bindDirektivActionID(r.Header[http.CanonicalHeaderKey("Direktiv-ActionID")], true, route.Formats); err != nil {
|
||||
res = append(res, err)
|
||||
}
|
||||
if len(res) > 0 {
|
||||
return errors.CompositeValidationError(res...)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// bindDirektivActionID binds and validates parameter DirektivActionID from header.
|
||||
func (o *DeleteParams) bindDirektivActionID(rawData []string, hasKey bool, formats strfmt.Registry) error {
|
||||
var raw string
|
||||
if len(rawData) > 0 {
|
||||
raw = rawData[len(rawData)-1]
|
||||
}
|
||||
|
||||
// Required: false
|
||||
|
||||
if raw == "" { // empty values pass all other validations
|
||||
return nil
|
||||
}
|
||||
o.DirektivActionID = &raw
|
||||
|
||||
return nil
|
||||
}
|
Reference in New Issue
Block a user