Files
gerald/internal/interfaces/rest/restapi/operations/feedback/get_feedbacks_parameters.go
2024-04-20 16:45:56 +03:00

83 lines
2.1 KiB
Go

// Code generated by go-swagger; DO NOT EDIT.
package feedback
// 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"
"github.com/go-openapi/runtime/middleware"
"github.com/go-openapi/strfmt"
"github.com/go-openapi/validate"
)
// NewGetFeedbacksParams creates a new GetFeedbacksParams object
//
// There are no default values defined in the spec.
func NewGetFeedbacksParams() GetFeedbacksParams {
return GetFeedbacksParams{}
}
// GetFeedbacksParams contains all the bound params for the get feedbacks operation
// typically these are obtained from a http.Request
//
// swagger:parameters getFeedbacks
type GetFeedbacksParams struct {
// HTTP Request Object
HTTPRequest *http.Request `json:"-"`
/*Session ID
Required: true
In: query
*/
SessionID 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 NewGetFeedbacksParams() beforehand.
func (o *GetFeedbacksParams) BindRequest(r *http.Request, route *middleware.MatchedRoute) error {
var res []error
o.HTTPRequest = r
qs := runtime.Values(r.URL.Query())
qSessionID, qhkSessionID, _ := qs.GetOK("session_id")
if err := o.bindSessionID(qSessionID, qhkSessionID, route.Formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
// bindSessionID binds and validates parameter SessionID from query.
func (o *GetFeedbacksParams) bindSessionID(rawData []string, hasKey bool, formats strfmt.Registry) error {
if !hasKey {
return errors.Required("session_id", "query", rawData)
}
var raw string
if len(rawData) > 0 {
raw = rawData[len(rawData)-1]
}
// Required: true
// AllowEmptyValue: false
if err := validate.RequiredString("session_id", "query", raw); err != nil {
return err
}
o.SessionID = raw
return nil
}