forked from labd/commercetools-go-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
service_order.go
357 lines (315 loc) · 9.72 KB
/
service_order.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
// Automatically generated, do not edit
package commercetools
import (
"context"
"fmt"
"net/url"
"strconv"
)
// OrderCreate creates a new instance of type Order
func (client *Client) OrderCreate(ctx context.Context, draft *OrderFromCartDraft, opts ...RequestOption) (result *Order, err error) {
params := url.Values{}
for _, opt := range opts {
opt(¶ms)
}
endpoint := "orders"
err = client.create(ctx, endpoint, params, draft, &result)
if err != nil {
return nil, err
}
return result, nil
}
// OrderQuery allows querying for type Order
func (client *Client) OrderQuery(ctx context.Context, input *QueryInput) (result *OrderPagedQueryResponse, err error) {
endpoint := "orders"
err = client.query(ctx, endpoint, input.toParams(), &result)
if err != nil {
return nil, err
}
return result, nil
}
// OrderDeleteWithID for type Order
func (client *Client) OrderDeleteWithID(ctx context.Context, id string, version int, dataErasure bool, opts ...RequestOption) (result *Order, err error) {
params := url.Values{}
params.Set("version", strconv.Itoa(version))
params.Set("dataErasure", strconv.FormatBool(dataErasure))
for _, opt := range opts {
opt(¶ms)
}
endpoint := fmt.Sprintf("orders/%s", id)
err = client.delete(ctx, endpoint, params, &result)
if err != nil {
return nil, err
}
return result, nil
}
// OrderDeleteWithOrderNumber for type Order
func (client *Client) OrderDeleteWithOrderNumber(ctx context.Context, orderNumber string, version int, dataErasure bool, opts ...RequestOption) (result *Order, err error) {
params := url.Values{}
params.Set("version", strconv.Itoa(version))
params.Set("dataErasure", strconv.FormatBool(dataErasure))
for _, opt := range opts {
opt(¶ms)
}
endpoint := fmt.Sprintf("orders/order-number=%s", orderNumber)
err = client.delete(ctx, endpoint, params, &result)
if err != nil {
return nil, err
}
return result, nil
}
// OrderGetWithID for type Order
func (client *Client) OrderGetWithID(ctx context.Context, id string, opts ...RequestOption) (result *Order, err error) {
params := url.Values{}
for _, opt := range opts {
opt(¶ms)
}
endpoint := fmt.Sprintf("orders/%s", id)
err = client.get(ctx, endpoint, params, &result)
if err != nil {
return nil, err
}
return result, nil
}
/*
OrderGetWithOrderNumber In case the orderNumber does not match the regular expression [a-zA-Z0-9_\-]+,
it should be provided in URL-encoded format.
*/
func (client *Client) OrderGetWithOrderNumber(ctx context.Context, orderNumber string, opts ...RequestOption) (result *Order, err error) {
params := url.Values{}
for _, opt := range opts {
opt(¶ms)
}
endpoint := fmt.Sprintf("orders/order-number=%s", orderNumber)
err = client.get(ctx, endpoint, params, &result)
if err != nil {
return nil, err
}
return result, nil
}
// OrderUpdateWithIDInput is input for function OrderUpdateWithID
type OrderUpdateWithIDInput struct {
ID string
Version int
Actions []OrderUpdateAction
}
func (input *OrderUpdateWithIDInput) Validate() error {
if input.ID == "" {
return fmt.Errorf("no valid value for ID given")
}
if len(input.Actions) == 0 {
return fmt.Errorf("no update actions specified")
}
return nil
}
// OrderUpdateWithID for type Order
func (client *Client) OrderUpdateWithID(ctx context.Context, input *OrderUpdateWithIDInput, opts ...RequestOption) (result *Order, err error) {
if err := input.Validate(); err != nil {
return nil, err
}
params := url.Values{}
for _, opt := range opts {
opt(¶ms)
}
endpoint := fmt.Sprintf("orders/%s", input.ID)
err = client.update(ctx, endpoint, params, input.Version, input.Actions, &result)
if err != nil {
return nil, err
}
return result, nil
}
// OrderUpdateWithOrderNumberInput is input for function OrderUpdateWithOrderNumber
type OrderUpdateWithOrderNumberInput struct {
OrderNumber string
Version int
Actions []OrderUpdateAction
}
func (input *OrderUpdateWithOrderNumberInput) Validate() error {
if input.OrderNumber == "" {
return fmt.Errorf("no valid value for OrderNumber given")
}
if len(input.Actions) == 0 {
return fmt.Errorf("no update actions specified")
}
return nil
}
// OrderUpdateWithOrderNumber for type Order
func (client *Client) OrderUpdateWithOrderNumber(ctx context.Context, input *OrderUpdateWithOrderNumberInput, opts ...RequestOption) (result *Order, err error) {
if err := input.Validate(); err != nil {
return nil, err
}
params := url.Values{}
for _, opt := range opts {
opt(¶ms)
}
endpoint := fmt.Sprintf("orders/order-number=%s", input.OrderNumber)
err = client.update(ctx, endpoint, params, input.Version, input.Actions, &result)
if err != nil {
return nil, err
}
return result, nil
}
// OrderImport for type OrderImportDraft
func (client *Client) OrderImport(ctx context.Context, value *OrderImportDraft, opts ...RequestOption) (result *Order, err error) {
params := url.Values{}
for _, opt := range opts {
opt(¶ms)
}
endpoint := "orders/import"
err = client.create(ctx, endpoint, params, value, &result)
if err != nil {
return nil, err
}
return result, nil
}
// OrderEditCreate creates a new instance of type OrderEdit
func (client *Client) OrderEditCreate(ctx context.Context, draft *OrderEditDraft, opts ...RequestOption) (result *OrderEdit, err error) {
params := url.Values{}
for _, opt := range opts {
opt(¶ms)
}
endpoint := "orders/edits"
err = client.create(ctx, endpoint, params, draft, &result)
if err != nil {
return nil, err
}
return result, nil
}
// OrderEditQuery allows querying for type Order
func (client *Client) OrderEditQuery(ctx context.Context, input *QueryInput) (result *OrderEditPagedQueryResponse, err error) {
endpoint := "orders/edits"
err = client.query(ctx, endpoint, input.toParams(), &result)
if err != nil {
return nil, err
}
return result, nil
}
// OrderEditDeleteWithID for type OrderEdit
func (client *Client) OrderEditDeleteWithID(ctx context.Context, id string, version int, opts ...RequestOption) (result *OrderEdit, err error) {
params := url.Values{}
params.Set("version", strconv.Itoa(version))
for _, opt := range opts {
opt(¶ms)
}
endpoint := fmt.Sprintf("orders/edits/%s", id)
err = client.delete(ctx, endpoint, params, &result)
if err != nil {
return nil, err
}
return result, nil
}
// OrderEditDeleteWithKey for type OrderEdit
func (client *Client) OrderEditDeleteWithKey(ctx context.Context, key string, version int, opts ...RequestOption) (result *OrderEdit, err error) {
params := url.Values{}
params.Set("version", strconv.Itoa(version))
for _, opt := range opts {
opt(¶ms)
}
endpoint := fmt.Sprintf("orders/edits/key=%s", key)
err = client.delete(ctx, endpoint, params, &result)
if err != nil {
return nil, err
}
return result, nil
}
// OrderEditGetWithID for type OrderEdit
func (client *Client) OrderEditGetWithID(ctx context.Context, id string, opts ...RequestOption) (result *OrderEdit, err error) {
params := url.Values{}
for _, opt := range opts {
opt(¶ms)
}
endpoint := fmt.Sprintf("orders/edits/%s", id)
err = client.get(ctx, endpoint, params, &result)
if err != nil {
return nil, err
}
return result, nil
}
// OrderEditGetWithKey for type OrderEdit
func (client *Client) OrderEditGetWithKey(ctx context.Context, key string, opts ...RequestOption) (result *OrderEdit, err error) {
params := url.Values{}
for _, opt := range opts {
opt(¶ms)
}
endpoint := fmt.Sprintf("orders/edits/key=%s", key)
err = client.get(ctx, endpoint, params, &result)
if err != nil {
return nil, err
}
return result, nil
}
// OrderEditUpdateWithIDInput is input for function OrderEditUpdateWithID
type OrderEditUpdateWithIDInput struct {
ID string
Version int
Actions []OrderEditUpdateAction
}
func (input *OrderEditUpdateWithIDInput) Validate() error {
if input.ID == "" {
return fmt.Errorf("no valid value for ID given")
}
if len(input.Actions) == 0 {
return fmt.Errorf("no update actions specified")
}
return nil
}
// OrderEditUpdateWithID for type OrderEdit
func (client *Client) OrderEditUpdateWithID(ctx context.Context, input *OrderEditUpdateWithIDInput, opts ...RequestOption) (result *OrderEdit, err error) {
if err := input.Validate(); err != nil {
return nil, err
}
params := url.Values{}
for _, opt := range opts {
opt(¶ms)
}
endpoint := fmt.Sprintf("orders/edits/%s", input.ID)
err = client.update(ctx, endpoint, params, input.Version, input.Actions, &result)
if err != nil {
return nil, err
}
return result, nil
}
// OrderEditUpdateWithKeyInput is input for function OrderEditUpdateWithKey
type OrderEditUpdateWithKeyInput struct {
Key string
Version int
Actions []OrderEditUpdateAction
}
func (input *OrderEditUpdateWithKeyInput) Validate() error {
if input.Key == "" {
return fmt.Errorf("no valid value for Key given")
}
if len(input.Actions) == 0 {
return fmt.Errorf("no update actions specified")
}
return nil
}
// OrderEditUpdateWithKey for type OrderEdit
func (client *Client) OrderEditUpdateWithKey(ctx context.Context, input *OrderEditUpdateWithKeyInput, opts ...RequestOption) (result *OrderEdit, err error) {
if err := input.Validate(); err != nil {
return nil, err
}
params := url.Values{}
for _, opt := range opts {
opt(¶ms)
}
endpoint := fmt.Sprintf("orders/edits/key=%s", input.Key)
err = client.update(ctx, endpoint, params, input.Version, input.Actions, &result)
if err != nil {
return nil, err
}
return result, nil
}
// OrderEditApply for type OrderEditApply
func (client *Client) OrderEditApply(ctx context.Context, value *OrderEditApply, opts ...RequestOption) (result *OrderEdit, err error) {
params := url.Values{}
for _, opt := range opts {
opt(¶ms)
}
endpoint := "orders/edits/apply"
err = client.create(ctx, endpoint, params, value, &result)
if err != nil {
return nil, err
}
return result, nil
}