Add optional subscription ID
[ric-plt/xapp-frame.git] / pkg / restapi / operations / common / unsubscribe_parameters.go
1 // Code generated by go-swagger; DO NOT EDIT.
2
3 package common
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/strfmt"
14 )
15
16 // NewUnsubscribeParams creates a new UnsubscribeParams object
17 // no default values defined in spec.
18 func NewUnsubscribeParams() UnsubscribeParams {
19
20         return UnsubscribeParams{}
21 }
22
23 // UnsubscribeParams contains all the bound params for the unsubscribe operation
24 // typically these are obtained from a http.Request
25 //
26 // swagger:parameters Unsubscribe
27 type UnsubscribeParams struct {
28
29         // HTTP Request Object
30         HTTPRequest *http.Request `json:"-"`
31
32         /*The subscriptionId received in the Subscription Response
33           Required: true
34           In: path
35         */
36         SubscriptionID string
37 }
38
39 // BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface
40 // for simple values it will use straight method calls.
41 //
42 // To ensure default values, the struct must have been initialized with NewUnsubscribeParams() beforehand.
43 func (o *UnsubscribeParams) BindRequest(r *http.Request, route *middleware.MatchedRoute) error {
44         var res []error
45
46         o.HTTPRequest = r
47
48         rSubscriptionID, rhkSubscriptionID, _ := route.Params.GetOK("subscriptionId")
49         if err := o.bindSubscriptionID(rSubscriptionID, rhkSubscriptionID, route.Formats); err != nil {
50                 res = append(res, err)
51         }
52
53         if len(res) > 0 {
54                 return errors.CompositeValidationError(res...)
55         }
56         return nil
57 }
58
59 // bindSubscriptionID binds and validates parameter SubscriptionID from path.
60 func (o *UnsubscribeParams) bindSubscriptionID(rawData []string, hasKey bool, formats strfmt.Registry) error {
61         var raw string
62         if len(rawData) > 0 {
63                 raw = rawData[len(rawData)-1]
64         }
65
66         // Required: true
67         // Parameter is provided by construction from the route
68
69         o.SubscriptionID = raw
70
71         return nil
72 }