github.com/djarvur/go-swagger@v0.18.0/examples/authentication/client/customers/get_id_parameters.go (about) 1 // Code generated by go-swagger; DO NOT EDIT. 2 3 package customers 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 "context" 10 "net/http" 11 "time" 12 13 "github.com/go-openapi/errors" 14 "github.com/go-openapi/runtime" 15 cr "github.com/go-openapi/runtime/client" 16 17 strfmt "github.com/go-openapi/strfmt" 18 19 models "github.com/go-swagger/go-swagger/examples/authentication/models" 20 ) 21 22 // NewGetIDParams creates a new GetIDParams object 23 // with the default values initialized. 24 func NewGetIDParams() *GetIDParams { 25 var () 26 return &GetIDParams{ 27 28 timeout: cr.DefaultTimeout, 29 } 30 } 31 32 // NewGetIDParamsWithTimeout creates a new GetIDParams object 33 // with the default values initialized, and the ability to set a timeout on a request 34 func NewGetIDParamsWithTimeout(timeout time.Duration) *GetIDParams { 35 var () 36 return &GetIDParams{ 37 38 timeout: timeout, 39 } 40 } 41 42 // NewGetIDParamsWithContext creates a new GetIDParams object 43 // with the default values initialized, and the ability to set a context for a request 44 func NewGetIDParamsWithContext(ctx context.Context) *GetIDParams { 45 var () 46 return &GetIDParams{ 47 48 Context: ctx, 49 } 50 } 51 52 // NewGetIDParamsWithHTTPClient creates a new GetIDParams object 53 // with the default values initialized, and the ability to set a custom HTTPClient for a request 54 func NewGetIDParamsWithHTTPClient(client *http.Client) *GetIDParams { 55 var () 56 return &GetIDParams{ 57 HTTPClient: client, 58 } 59 } 60 61 /*GetIDParams contains all the parameters to send to the API endpoint 62 for the get Id operation typically these are written to a http.Request 63 */ 64 type GetIDParams struct { 65 66 /*Info*/ 67 Info *models.SocialID 68 69 timeout time.Duration 70 Context context.Context 71 HTTPClient *http.Client 72 } 73 74 // WithTimeout adds the timeout to the get Id params 75 func (o *GetIDParams) WithTimeout(timeout time.Duration) *GetIDParams { 76 o.SetTimeout(timeout) 77 return o 78 } 79 80 // SetTimeout adds the timeout to the get Id params 81 func (o *GetIDParams) SetTimeout(timeout time.Duration) { 82 o.timeout = timeout 83 } 84 85 // WithContext adds the context to the get Id params 86 func (o *GetIDParams) WithContext(ctx context.Context) *GetIDParams { 87 o.SetContext(ctx) 88 return o 89 } 90 91 // SetContext adds the context to the get Id params 92 func (o *GetIDParams) SetContext(ctx context.Context) { 93 o.Context = ctx 94 } 95 96 // WithHTTPClient adds the HTTPClient to the get Id params 97 func (o *GetIDParams) WithHTTPClient(client *http.Client) *GetIDParams { 98 o.SetHTTPClient(client) 99 return o 100 } 101 102 // SetHTTPClient adds the HTTPClient to the get Id params 103 func (o *GetIDParams) SetHTTPClient(client *http.Client) { 104 o.HTTPClient = client 105 } 106 107 // WithInfo adds the info to the get Id params 108 func (o *GetIDParams) WithInfo(info *models.SocialID) *GetIDParams { 109 o.SetInfo(info) 110 return o 111 } 112 113 // SetInfo adds the info to the get Id params 114 func (o *GetIDParams) SetInfo(info *models.SocialID) { 115 o.Info = info 116 } 117 118 // WriteToRequest writes these params to a swagger request 119 func (o *GetIDParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error { 120 121 if err := r.SetTimeout(o.timeout); err != nil { 122 return err 123 } 124 var res []error 125 126 if o.Info != nil { 127 if err := r.SetBodyParam(o.Info); err != nil { 128 return err 129 } 130 } 131 132 if len(res) > 0 { 133 return errors.CompositeValidationError(res...) 134 } 135 return nil 136 }