github.com/djarvur/go-swagger@v0.18.0/examples/authentication/client/customers/create_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 // NewCreateParams creates a new CreateParams object 23 // with the default values initialized. 24 func NewCreateParams() *CreateParams { 25 var () 26 return &CreateParams{ 27 28 timeout: cr.DefaultTimeout, 29 } 30 } 31 32 // NewCreateParamsWithTimeout creates a new CreateParams object 33 // with the default values initialized, and the ability to set a timeout on a request 34 func NewCreateParamsWithTimeout(timeout time.Duration) *CreateParams { 35 var () 36 return &CreateParams{ 37 38 timeout: timeout, 39 } 40 } 41 42 // NewCreateParamsWithContext creates a new CreateParams object 43 // with the default values initialized, and the ability to set a context for a request 44 func NewCreateParamsWithContext(ctx context.Context) *CreateParams { 45 var () 46 return &CreateParams{ 47 48 Context: ctx, 49 } 50 } 51 52 // NewCreateParamsWithHTTPClient creates a new CreateParams object 53 // with the default values initialized, and the ability to set a custom HTTPClient for a request 54 func NewCreateParamsWithHTTPClient(client *http.Client) *CreateParams { 55 var () 56 return &CreateParams{ 57 HTTPClient: client, 58 } 59 } 60 61 /*CreateParams contains all the parameters to send to the API endpoint 62 for the create operation typically these are written to a http.Request 63 */ 64 type CreateParams struct { 65 66 /*Info*/ 67 Info *models.Customer 68 69 timeout time.Duration 70 Context context.Context 71 HTTPClient *http.Client 72 } 73 74 // WithTimeout adds the timeout to the create params 75 func (o *CreateParams) WithTimeout(timeout time.Duration) *CreateParams { 76 o.SetTimeout(timeout) 77 return o 78 } 79 80 // SetTimeout adds the timeout to the create params 81 func (o *CreateParams) SetTimeout(timeout time.Duration) { 82 o.timeout = timeout 83 } 84 85 // WithContext adds the context to the create params 86 func (o *CreateParams) WithContext(ctx context.Context) *CreateParams { 87 o.SetContext(ctx) 88 return o 89 } 90 91 // SetContext adds the context to the create params 92 func (o *CreateParams) SetContext(ctx context.Context) { 93 o.Context = ctx 94 } 95 96 // WithHTTPClient adds the HTTPClient to the create params 97 func (o *CreateParams) WithHTTPClient(client *http.Client) *CreateParams { 98 o.SetHTTPClient(client) 99 return o 100 } 101 102 // SetHTTPClient adds the HTTPClient to the create params 103 func (o *CreateParams) SetHTTPClient(client *http.Client) { 104 o.HTTPClient = client 105 } 106 107 // WithInfo adds the info to the create params 108 func (o *CreateParams) WithInfo(info *models.Customer) *CreateParams { 109 o.SetInfo(info) 110 return o 111 } 112 113 // SetInfo adds the info to the create params 114 func (o *CreateParams) SetInfo(info *models.Customer) { 115 o.Info = info 116 } 117 118 // WriteToRequest writes these params to a swagger request 119 func (o *CreateParams) 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 }