-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathget_site_parameters.go
49 lines (38 loc) · 1.13 KB
/
get_site_parameters.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package operations
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"github.com/go-openapi/errors"
"github.com/go-openapi/runtime"
strfmt "github.com/go-openapi/strfmt"
)
// NewGetSiteParams creates a new GetSiteParams object
// with the default values initialized.
func NewGetSiteParams() *GetSiteParams {
var ()
return &GetSiteParams{}
}
/*GetSiteParams contains all the parameters to send to the API endpoint
for the get site operation typically these are written to a http.Request
*/
type GetSiteParams struct {
/*SiteID*/
SiteID string
}
// WithSiteID adds the siteId to the get site params
func (o *GetSiteParams) WithSiteID(SiteID string) *GetSiteParams {
o.SiteID = SiteID
return o
}
// WriteToRequest writes these params to a swagger request
func (o *GetSiteParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
var res []error
// path param site_id
if err := r.SetPathParam("site_id", o.SiteID); err != nil {
return err
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}