github.com/Percona-Lab/go-swagger@v0.19.0/examples/contributed-templates/stratoscale/restapi/operations/store/order_delete_parameters.go (about)

     1  // Code generated by go-swagger; DO NOT EDIT.
     2  
     3  package store
     4  
     5  // This file was generated by the swagger tool.
     6  // Editing this file might prove futile when you re-run the swagger generate command
     7  
     8  import (
     9  	"net/http"
    10  
    11  	"github.com/go-openapi/errors"
    12  	"github.com/go-openapi/runtime/middleware"
    13  	"github.com/go-openapi/swag"
    14  	"github.com/go-openapi/validate"
    15  
    16  	strfmt "github.com/go-openapi/strfmt"
    17  )
    18  
    19  // NewOrderDeleteParams creates a new OrderDeleteParams object
    20  // no default values defined in spec.
    21  func NewOrderDeleteParams() OrderDeleteParams {
    22  
    23  	return OrderDeleteParams{}
    24  }
    25  
    26  // OrderDeleteParams contains all the bound params for the order delete operation
    27  // typically these are obtained from a http.Request
    28  //
    29  // swagger:parameters OrderDelete
    30  type OrderDeleteParams struct {
    31  
    32  	// HTTP Request Object
    33  	HTTPRequest *http.Request `json:"-"`
    34  
    35  	/*ID of the order that needs to be deleted
    36  	  Required: true
    37  	  Minimum: 1
    38  	  In: path
    39  	*/
    40  	OrderID int64
    41  }
    42  
    43  // BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface
    44  // for simple values it will use straight method calls.
    45  //
    46  // To ensure default values, the struct must have been initialized with NewOrderDeleteParams() beforehand.
    47  func (o *OrderDeleteParams) BindRequest(r *http.Request, route *middleware.MatchedRoute) error {
    48  	var res []error
    49  
    50  	o.HTTPRequest = r
    51  
    52  	rOrderID, rhkOrderID, _ := route.Params.GetOK("orderId")
    53  	if err := o.bindOrderID(rOrderID, rhkOrderID, route.Formats); err != nil {
    54  		res = append(res, err)
    55  	}
    56  
    57  	if len(res) > 0 {
    58  		return errors.CompositeValidationError(res...)
    59  	}
    60  	return nil
    61  }
    62  
    63  // bindOrderID binds and validates parameter OrderID from path.
    64  func (o *OrderDeleteParams) bindOrderID(rawData []string, hasKey bool, formats strfmt.Registry) error {
    65  	var raw string
    66  	if len(rawData) > 0 {
    67  		raw = rawData[len(rawData)-1]
    68  	}
    69  
    70  	// Required: true
    71  	// Parameter is provided by construction from the route
    72  
    73  	value, err := swag.ConvertInt64(raw)
    74  	if err != nil {
    75  		return errors.InvalidType("orderId", "path", "int64", raw)
    76  	}
    77  	o.OrderID = value
    78  
    79  	if err := o.validateOrderID(formats); err != nil {
    80  		return err
    81  	}
    82  
    83  	return nil
    84  }
    85  
    86  // validateOrderID carries on validations for parameter OrderID
    87  func (o *OrderDeleteParams) validateOrderID(formats strfmt.Registry) error {
    88  
    89  	if err := validate.MinimumInt("orderId", "path", int64(o.OrderID), 1, false); err != nil {
    90  		return err
    91  	}
    92  
    93  	return nil
    94  }