github.com/circl-dev/go-swagger@v0.31.0/examples/contributed-templates/stratoscale/client/store/order_get_parameters.go (about) 1 // Code generated by go-swagger; DO NOT EDIT. 2 3 package store 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/strfmt" 15 "github.com/go-openapi/swag" 16 "github.com/circl-dev/runtime" 17 cr "github.com/circl-dev/runtime/client" 18 ) 19 20 // NewOrderGetParams creates a new OrderGetParams object, 21 // with the default timeout for this client. 22 // 23 // Default values are not hydrated, since defaults are normally applied by the API server side. 24 // 25 // To enforce default values in parameter, use SetDefaults or WithDefaults. 26 func NewOrderGetParams() *OrderGetParams { 27 return &OrderGetParams{ 28 timeout: cr.DefaultTimeout, 29 } 30 } 31 32 // NewOrderGetParamsWithTimeout creates a new OrderGetParams object 33 // with the ability to set a timeout on a request. 34 func NewOrderGetParamsWithTimeout(timeout time.Duration) *OrderGetParams { 35 return &OrderGetParams{ 36 timeout: timeout, 37 } 38 } 39 40 // NewOrderGetParamsWithContext creates a new OrderGetParams object 41 // with the ability to set a context for a request. 42 func NewOrderGetParamsWithContext(ctx context.Context) *OrderGetParams { 43 return &OrderGetParams{ 44 Context: ctx, 45 } 46 } 47 48 // NewOrderGetParamsWithHTTPClient creates a new OrderGetParams object 49 // with the ability to set a custom HTTPClient for a request. 50 func NewOrderGetParamsWithHTTPClient(client *http.Client) *OrderGetParams { 51 return &OrderGetParams{ 52 HTTPClient: client, 53 } 54 } 55 56 /* OrderGetParams contains all the parameters to send to the API endpoint 57 for the order get operation. 58 59 Typically these are written to a http.Request. 60 */ 61 type OrderGetParams struct { 62 63 /* OrderID. 64 65 ID of pet that needs to be fetched 66 67 Format: int64 68 */ 69 OrderID int64 70 71 timeout time.Duration 72 Context context.Context 73 HTTPClient *http.Client 74 } 75 76 // WithDefaults hydrates default values in the order get params (not the query body). 77 // 78 // All values with no default are reset to their zero value. 79 func (o *OrderGetParams) WithDefaults() *OrderGetParams { 80 o.SetDefaults() 81 return o 82 } 83 84 // SetDefaults hydrates default values in the order get params (not the query body). 85 // 86 // All values with no default are reset to their zero value. 87 func (o *OrderGetParams) SetDefaults() { 88 // no default values defined for this parameter 89 } 90 91 // WithTimeout adds the timeout to the order get params 92 func (o *OrderGetParams) WithTimeout(timeout time.Duration) *OrderGetParams { 93 o.SetTimeout(timeout) 94 return o 95 } 96 97 // SetTimeout adds the timeout to the order get params 98 func (o *OrderGetParams) SetTimeout(timeout time.Duration) { 99 o.timeout = timeout 100 } 101 102 // WithContext adds the context to the order get params 103 func (o *OrderGetParams) WithContext(ctx context.Context) *OrderGetParams { 104 o.SetContext(ctx) 105 return o 106 } 107 108 // SetContext adds the context to the order get params 109 func (o *OrderGetParams) SetContext(ctx context.Context) { 110 o.Context = ctx 111 } 112 113 // WithHTTPClient adds the HTTPClient to the order get params 114 func (o *OrderGetParams) WithHTTPClient(client *http.Client) *OrderGetParams { 115 o.SetHTTPClient(client) 116 return o 117 } 118 119 // SetHTTPClient adds the HTTPClient to the order get params 120 func (o *OrderGetParams) SetHTTPClient(client *http.Client) { 121 o.HTTPClient = client 122 } 123 124 // WithOrderID adds the orderID to the order get params 125 func (o *OrderGetParams) WithOrderID(orderID int64) *OrderGetParams { 126 o.SetOrderID(orderID) 127 return o 128 } 129 130 // SetOrderID adds the orderId to the order get params 131 func (o *OrderGetParams) SetOrderID(orderID int64) { 132 o.OrderID = orderID 133 } 134 135 // WriteToRequest writes these params to a swagger request 136 func (o *OrderGetParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error { 137 138 if err := r.SetTimeout(o.timeout); err != nil { 139 return err 140 } 141 var res []error 142 143 // path param orderId 144 if err := r.SetPathParam("orderId", swag.FormatInt64(o.OrderID)); err != nil { 145 return err 146 } 147 148 if len(res) > 0 { 149 return errors.CompositeValidationError(res...) 150 } 151 return nil 152 }