Add models
[ric-plt/xapp-frame.git] / pkg / restapi / operations / common / unsubscribe_urlbuilder.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 generate command
7
8 import (
9         "errors"
10         "net/url"
11         golangswaggerpaths "path"
12         "strings"
13
14         "github.com/go-openapi/swag"
15 )
16
17 // UnsubscribeURL generates an URL for the unsubscribe operation
18 type UnsubscribeURL struct {
19         SubscriptionID int64
20
21         _basePath string
22         // avoid unkeyed usage
23         _ struct{}
24 }
25
26 // WithBasePath sets the base path for this url builder, only required when it's different from the
27 // base path specified in the swagger spec.
28 // When the value of the base path is an empty string
29 func (o *UnsubscribeURL) WithBasePath(bp string) *UnsubscribeURL {
30         o.SetBasePath(bp)
31         return o
32 }
33
34 // SetBasePath sets the base path for this url builder, only required when it's different from the
35 // base path specified in the swagger spec.
36 // When the value of the base path is an empty string
37 func (o *UnsubscribeURL) SetBasePath(bp string) {
38         o._basePath = bp
39 }
40
41 // Build a url path and query string
42 func (o *UnsubscribeURL) Build() (*url.URL, error) {
43         var _result url.URL
44
45         var _path = "/subscriptions/{subscriptionId}"
46
47         subscriptionID := swag.FormatInt64(o.SubscriptionID)
48         if subscriptionID != "" {
49                 _path = strings.Replace(_path, "{subscriptionId}", subscriptionID, -1)
50         } else {
51                 return nil, errors.New("subscriptionId is required on UnsubscribeURL")
52         }
53
54         _basePath := o._basePath
55         if _basePath == "" {
56                 _basePath = "/ric/v1"
57         }
58         _result.Path = golangswaggerpaths.Join(_basePath, _path)
59
60         return &_result, nil
61 }
62
63 // Must is a helper function to panic when the url builder returns an error
64 func (o *UnsubscribeURL) Must(u *url.URL, err error) *url.URL {
65         if err != nil {
66                 panic(err)
67         }
68         if u == nil {
69                 panic("url can't be nil")
70         }
71         return u
72 }
73
74 // String returns the string representation of the path with query string
75 func (o *UnsubscribeURL) String() string {
76         return o.Must(o.Build()).String()
77 }
78
79 // BuildFull builds a full url with scheme, host, path and query string
80 func (o *UnsubscribeURL) BuildFull(scheme, host string) (*url.URL, error) {
81         if scheme == "" {
82                 return nil, errors.New("scheme is required for a full url on UnsubscribeURL")
83         }
84         if host == "" {
85                 return nil, errors.New("host is required for a full url on UnsubscribeURL")
86         }
87
88         base, err := o.Build()
89         if err != nil {
90                 return nil, err
91         }
92
93         base.Scheme = scheme
94         base.Host = host
95         return base, nil
96 }
97
98 // StringFull returns the string representation of a complete url
99 func (o *UnsubscribeURL) StringFull(scheme, host string) string {
100         return o.Must(o.BuildFull(scheme, host)).String()
101 }