-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathShoppingListDraftBuilder.php
More file actions
470 lines (379 loc) · 11.4 KB
/
Copy pathShoppingListDraftBuilder.php
File metadata and controls
470 lines (379 loc) · 11.4 KB
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
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
<?php
declare(strict_types=1);
/**
* This file has been auto generated
* Do not change it.
*/
namespace Commercetools\Api\Models\ShoppingList;
use Commercetools\Api\Models\BusinessUnit\BusinessUnitResourceIdentifier;
use Commercetools\Api\Models\BusinessUnit\BusinessUnitResourceIdentifierBuilder;
use Commercetools\Api\Models\Common\LocalizedString;
use Commercetools\Api\Models\Common\LocalizedStringBuilder;
use Commercetools\Api\Models\Customer\CustomerResourceIdentifier;
use Commercetools\Api\Models\Customer\CustomerResourceIdentifierBuilder;
use Commercetools\Api\Models\Store\StoreResourceIdentifier;
use Commercetools\Api\Models\Store\StoreResourceIdentifierBuilder;
use Commercetools\Api\Models\Type\CustomFieldsDraft;
use Commercetools\Api\Models\Type\CustomFieldsDraftBuilder;
use Commercetools\Base\Builder;
use Commercetools\Base\DateTimeImmutableCollection;
use Commercetools\Base\JsonObject;
use Commercetools\Base\JsonObjectModel;
use Commercetools\Base\MapperFactory;
use stdClass;
/**
* @implements Builder<ShoppingListDraft>
*/
final class ShoppingListDraftBuilder implements Builder
{
/**
* @var null|LocalizedString|LocalizedStringBuilder
*/
private $name;
/**
* @var null|LocalizedString|LocalizedStringBuilder
*/
private $slug;
/**
* @var null|CustomerResourceIdentifier|CustomerResourceIdentifierBuilder
*/
private $customer;
/**
* @var ?string
*/
private $key;
/**
* @var null|LocalizedString|LocalizedStringBuilder
*/
private $description;
/**
* @var ?string
*/
private $anonymousId;
/**
* @var ?int
*/
private $deleteDaysAfterLastModification;
/**
* @var ?ShoppingListLineItemDraftCollection
*/
private $lineItems;
/**
* @var ?TextLineItemDraftCollection
*/
private $textLineItems;
/**
* @var null|StoreResourceIdentifier|StoreResourceIdentifierBuilder
*/
private $store;
/**
* @var null|BusinessUnitResourceIdentifier|BusinessUnitResourceIdentifierBuilder
*/
private $businessUnit;
/**
* @var null|CustomFieldsDraft|CustomFieldsDraftBuilder
*/
private $custom;
/**
* <p>Name of the ShoppingList.</p>
*
* @return null|LocalizedString
*/
public function getName()
{
return $this->name instanceof LocalizedStringBuilder ? $this->name->build() : $this->name;
}
/**
* <p>Human-readable identifiers usually used as deep-link URL to the related ShoppingList.
* Each slug is unique across a Project, but a ShoppingList can have the same slug for different languages.
* The slug must match the pattern <code>[a-zA-Z0-9_-]{2,256}</code>.</p>
*
* @return null|LocalizedString
*/
public function getSlug()
{
return $this->slug instanceof LocalizedStringBuilder ? $this->slug->build() : $this->slug;
}
/**
* <p>The <a href="ctp:api:type:Customer">Customer</a> the ShoppingList should be associated to.</p>
*
* @return null|CustomerResourceIdentifier
*/
public function getCustomer()
{
return $this->customer instanceof CustomerResourceIdentifierBuilder ? $this->customer->build() : $this->customer;
}
/**
* <p>User-defined unique identifier for the ShoppingList.</p>
*
* @return null|string
*/
public function getKey()
{
return $this->key;
}
/**
* <p>Description of the ShoppingList.</p>
*
* @return null|LocalizedString
*/
public function getDescription()
{
return $this->description instanceof LocalizedStringBuilder ? $this->description->build() : $this->description;
}
/**
* <p>Identifies ShoppingLists belonging to an <a href="ctp:api:type:AnonymousSession">anonymous session</a>.</p>
*
* @return null|string
*/
public function getAnonymousId()
{
return $this->anonymousId;
}
/**
* <p>Number of days after the last modification before a ShoppingList is deleted. If not set, the <a href="ctp:api:type:ShoppingListsConfiguration">default value</a> configured in the <a href="ctp:api:type:Project">Project</a> is used.</p>
*
* @return null|int
*/
public function getDeleteDaysAfterLastModification()
{
return $this->deleteDaysAfterLastModification;
}
/**
* <p>Line Items (containing Products) to add to the ShoppingList.</p>
*
* @return null|ShoppingListLineItemDraftCollection
*/
public function getLineItems()
{
return $this->lineItems;
}
/**
* <p>Line Items (containing text values) to add to the ShoppingList.</p>
*
* @return null|TextLineItemDraftCollection
*/
public function getTextLineItems()
{
return $this->textLineItems;
}
/**
* <p>Assigns the new ShoppingList to the <a href="ctp:api:type:Store">Store</a>.</p>
*
* @return null|StoreResourceIdentifier
*/
public function getStore()
{
return $this->store instanceof StoreResourceIdentifierBuilder ? $this->store->build() : $this->store;
}
/**
* <p><a href="ctp:api:type:ResourceIdentifier">ResourceIdentifier</a> of the Business Unit the Shopping List should belong to. When the <code>customer</code> of the Shopping List is set, the <a href="ctp:api:type:Customer">Customer</a> must be an <a href="ctp:api:type:Associate">Associate</a> of the Business Unit. Only available for <a href="/../offering/composable-commerce#composable-commerce-for-b2b">B2B</a>-enabled Projects.</p>
*
* @return null|BusinessUnitResourceIdentifier
*/
public function getBusinessUnit()
{
return $this->businessUnit instanceof BusinessUnitResourceIdentifierBuilder ? $this->businessUnit->build() : $this->businessUnit;
}
/**
* <p>Custom Fields defined for the ShoppingList.</p>
*
* @return null|CustomFieldsDraft
*/
public function getCustom()
{
return $this->custom instanceof CustomFieldsDraftBuilder ? $this->custom->build() : $this->custom;
}
/**
* @param ?LocalizedString $name
* @return $this
*/
public function withName(?LocalizedString $name)
{
$this->name = $name;
return $this;
}
/**
* @param ?LocalizedString $slug
* @return $this
*/
public function withSlug(?LocalizedString $slug)
{
$this->slug = $slug;
return $this;
}
/**
* @param ?CustomerResourceIdentifier $customer
* @return $this
*/
public function withCustomer(?CustomerResourceIdentifier $customer)
{
$this->customer = $customer;
return $this;
}
/**
* @param ?string $key
* @return $this
*/
public function withKey(?string $key)
{
$this->key = $key;
return $this;
}
/**
* @param ?LocalizedString $description
* @return $this
*/
public function withDescription(?LocalizedString $description)
{
$this->description = $description;
return $this;
}
/**
* @param ?string $anonymousId
* @return $this
*/
public function withAnonymousId(?string $anonymousId)
{
$this->anonymousId = $anonymousId;
return $this;
}
/**
* @param ?int $deleteDaysAfterLastModification
* @return $this
*/
public function withDeleteDaysAfterLastModification(?int $deleteDaysAfterLastModification)
{
$this->deleteDaysAfterLastModification = $deleteDaysAfterLastModification;
return $this;
}
/**
* @param ?ShoppingListLineItemDraftCollection $lineItems
* @return $this
*/
public function withLineItems(?ShoppingListLineItemDraftCollection $lineItems)
{
$this->lineItems = $lineItems;
return $this;
}
/**
* @param ?TextLineItemDraftCollection $textLineItems
* @return $this
*/
public function withTextLineItems(?TextLineItemDraftCollection $textLineItems)
{
$this->textLineItems = $textLineItems;
return $this;
}
/**
* @param ?StoreResourceIdentifier $store
* @return $this
*/
public function withStore(?StoreResourceIdentifier $store)
{
$this->store = $store;
return $this;
}
/**
* @param ?BusinessUnitResourceIdentifier $businessUnit
* @return $this
*/
public function withBusinessUnit(?BusinessUnitResourceIdentifier $businessUnit)
{
$this->businessUnit = $businessUnit;
return $this;
}
/**
* @param ?CustomFieldsDraft $custom
* @return $this
*/
public function withCustom(?CustomFieldsDraft $custom)
{
$this->custom = $custom;
return $this;
}
/**
* @deprecated use withName() instead
* @return $this
*/
public function withNameBuilder(?LocalizedStringBuilder $name)
{
$this->name = $name;
return $this;
}
/**
* @deprecated use withSlug() instead
* @return $this
*/
public function withSlugBuilder(?LocalizedStringBuilder $slug)
{
$this->slug = $slug;
return $this;
}
/**
* @deprecated use withCustomer() instead
* @return $this
*/
public function withCustomerBuilder(?CustomerResourceIdentifierBuilder $customer)
{
$this->customer = $customer;
return $this;
}
/**
* @deprecated use withDescription() instead
* @return $this
*/
public function withDescriptionBuilder(?LocalizedStringBuilder $description)
{
$this->description = $description;
return $this;
}
/**
* @deprecated use withStore() instead
* @return $this
*/
public function withStoreBuilder(?StoreResourceIdentifierBuilder $store)
{
$this->store = $store;
return $this;
}
/**
* @deprecated use withBusinessUnit() instead
* @return $this
*/
public function withBusinessUnitBuilder(?BusinessUnitResourceIdentifierBuilder $businessUnit)
{
$this->businessUnit = $businessUnit;
return $this;
}
/**
* @deprecated use withCustom() instead
* @return $this
*/
public function withCustomBuilder(?CustomFieldsDraftBuilder $custom)
{
$this->custom = $custom;
return $this;
}
public function build(): ShoppingListDraft
{
return new ShoppingListDraftModel(
$this->name instanceof LocalizedStringBuilder ? $this->name->build() : $this->name,
$this->slug instanceof LocalizedStringBuilder ? $this->slug->build() : $this->slug,
$this->customer instanceof CustomerResourceIdentifierBuilder ? $this->customer->build() : $this->customer,
$this->key,
$this->description instanceof LocalizedStringBuilder ? $this->description->build() : $this->description,
$this->anonymousId,
$this->deleteDaysAfterLastModification,
$this->lineItems,
$this->textLineItems,
$this->store instanceof StoreResourceIdentifierBuilder ? $this->store->build() : $this->store,
$this->businessUnit instanceof BusinessUnitResourceIdentifierBuilder ? $this->businessUnit->build() : $this->businessUnit,
$this->custom instanceof CustomFieldsDraftBuilder ? $this->custom->build() : $this->custom
);
}
public static function of(): ShoppingListDraftBuilder
{
return new self();
}
}