zrok/rest_server_zrok/operations/account/invite_urlbuilder.go

88 lines
2.2 KiB
Go
Raw Normal View History

2022-09-19 21:58:52 +02:00
// Code generated by go-swagger; DO NOT EDIT.
2022-11-30 17:43:00 +01:00
package account
2022-09-19 21:58:52 +02:00
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the generate command
import (
"errors"
"net/url"
golangswaggerpaths "path"
)
2022-11-30 17:43:00 +01:00
// InviteURL generates an URL for the invite operation
type InviteURL struct {
2022-09-19 21:58:52 +02:00
_basePath string
}
// WithBasePath sets the base path for this url builder, only required when it's different from the
// base path specified in the swagger spec.
// When the value of the base path is an empty string
2022-11-30 17:43:00 +01:00
func (o *InviteURL) WithBasePath(bp string) *InviteURL {
2022-09-19 21:58:52 +02:00
o.SetBasePath(bp)
return o
}
// SetBasePath sets the base path for this url builder, only required when it's different from the
// base path specified in the swagger spec.
// When the value of the base path is an empty string
2022-11-30 17:43:00 +01:00
func (o *InviteURL) SetBasePath(bp string) {
2022-09-19 21:58:52 +02:00
o._basePath = bp
}
// Build a url path and query string
2022-11-30 17:43:00 +01:00
func (o *InviteURL) Build() (*url.URL, error) {
2022-09-19 21:58:52 +02:00
var _result url.URL
2022-11-30 17:43:00 +01:00
var _path = "/invite"
2022-09-19 21:58:52 +02:00
_basePath := o._basePath
if _basePath == "" {
_basePath = "/api/v1"
}
_result.Path = golangswaggerpaths.Join(_basePath, _path)
return &_result, nil
}
// Must is a helper function to panic when the url builder returns an error
2022-11-30 17:43:00 +01:00
func (o *InviteURL) Must(u *url.URL, err error) *url.URL {
2022-09-19 21:58:52 +02:00
if err != nil {
panic(err)
}
if u == nil {
panic("url can't be nil")
}
return u
}
// String returns the string representation of the path with query string
2022-11-30 17:43:00 +01:00
func (o *InviteURL) String() string {
2022-09-19 21:58:52 +02:00
return o.Must(o.Build()).String()
}
// BuildFull builds a full url with scheme, host, path and query string
2022-11-30 17:43:00 +01:00
func (o *InviteURL) BuildFull(scheme, host string) (*url.URL, error) {
2022-09-19 21:58:52 +02:00
if scheme == "" {
2022-11-30 17:43:00 +01:00
return nil, errors.New("scheme is required for a full url on InviteURL")
2022-09-19 21:58:52 +02:00
}
if host == "" {
2022-11-30 17:43:00 +01:00
return nil, errors.New("host is required for a full url on InviteURL")
2022-09-19 21:58:52 +02:00
}
base, err := o.Build()
if err != nil {
return nil, err
}
base.Scheme = scheme
base.Host = host
return base, nil
}
// StringFull returns the string representation of a complete url
2022-11-30 17:43:00 +01:00
func (o *InviteURL) StringFull(scheme, host string) string {
2022-09-19 21:58:52 +02:00
return o.Must(o.BuildFull(scheme, host)).String()
}