-
Notifications
You must be signed in to change notification settings - Fork 15
/
get_user_requests.go
88 lines (64 loc) · 1.75 KB
/
get_user_requests.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
// Code generated by go-swagger; DO NOT EDIT.
package users
import (
"context"
"net/http"
"time"
"github.com/go-openapi/errors"
"github.com/go-openapi/runtime"
cr "github.com/go-openapi/runtime/client"
strfmt "github.com/go-openapi/strfmt"
)
// Client.GetUser creates a new GetUserRequest object
// with the default values initialized.
func (c *Client) GetUser() *GetUserRequest {
var ()
return &GetUserRequest{
UserID: c.Defaults.GetStrfmtUUID("GetUser", "user_id"),
timeout: cr.DefaultTimeout,
transport: c.transport,
formats: c.formats,
}
}
type GetUserRequest struct {
/*UserID User Id */
UserID strfmt.UUID
timeout time.Duration
Context context.Context
HTTPClient *http.Client
transport runtime.ClientTransport
formats strfmt.Registry
}
func (o *GetUserRequest) FromJson(j string) (*GetUserRequest, error) {
return o, nil
}
func (o *GetUserRequest) WithUserID(userID strfmt.UUID) *GetUserRequest {
o.UserID = userID
return o
}
//////////////////
// WithContext adds the context to the get user Request
func (o *GetUserRequest) WithContext(ctx context.Context) *GetUserRequest {
o.Context = ctx
return o
}
// WithHTTPClient adds the HTTPClient to the get user Request
func (o *GetUserRequest) WithHTTPClient(client *http.Client) *GetUserRequest {
o.HTTPClient = client
return o
}
// WriteToRequest writes these Request to a swagger request
func (o *GetUserRequest) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
if err := r.SetTimeout(o.timeout); err != nil {
return err
}
var res []error
// path param user_id
if err := r.SetPathParam("user_id", o.UserID.String()); err != nil {
return err
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}