-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathMyShoppingListDraftModel.php
More file actions
294 lines (256 loc) · 7.64 KB
/
Copy pathMyShoppingListDraftModel.php
File metadata and controls
294 lines (256 loc) · 7.64 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
<?php
declare(strict_types=1);
/**
* This file has been auto generated
* Do not change it.
*/
namespace Commercetools\Api\Models\Me;
use Commercetools\Api\Models\Common\LocalizedString;
use Commercetools\Api\Models\Common\LocalizedStringModel;
use Commercetools\Api\Models\ShoppingList\ShoppingListLineItemDraftCollection;
use Commercetools\Api\Models\ShoppingList\TextLineItemDraftCollection;
use Commercetools\Api\Models\Store\StoreResourceIdentifier;
use Commercetools\Api\Models\Store\StoreResourceIdentifierModel;
use Commercetools\Api\Models\Type\CustomFieldsDraft;
use Commercetools\Api\Models\Type\CustomFieldsDraftModel;
use Commercetools\Base\DateTimeImmutableCollection;
use Commercetools\Base\JsonObject;
use Commercetools\Base\JsonObjectModel;
use Commercetools\Base\MapperFactory;
use stdClass;
/**
* @internal
*/
final class MyShoppingListDraftModel extends JsonObjectModel implements MyShoppingListDraft
{
/**
*
* @var ?LocalizedString
*/
protected $name;
/**
*
* @var ?LocalizedString
*/
protected $description;
/**
*
* @var ?ShoppingListLineItemDraftCollection
*/
protected $lineItems;
/**
*
* @var ?TextLineItemDraftCollection
*/
protected $textLineItems;
/**
*
* @var ?CustomFieldsDraft
*/
protected $custom;
/**
*
* @var ?int
*/
protected $deleteDaysAfterLastModification;
/**
*
* @var ?StoreResourceIdentifier
*/
protected $store;
/**
* @psalm-suppress MissingParamType
*/
public function __construct(
?LocalizedString $name = null,
?LocalizedString $description = null,
?ShoppingListLineItemDraftCollection $lineItems = null,
?TextLineItemDraftCollection $textLineItems = null,
?CustomFieldsDraft $custom = null,
?int $deleteDaysAfterLastModification = null,
?StoreResourceIdentifier $store = null
) {
$this->name = $name;
$this->description = $description;
$this->lineItems = $lineItems;
$this->textLineItems = $textLineItems;
$this->custom = $custom;
$this->deleteDaysAfterLastModification = $deleteDaysAfterLastModification;
$this->store = $store;
}
/**
* <p>Name of the <a href="ctp:api:type:ShoppingList">ShoppingList</a>.</p>
*
*
* @return null|LocalizedString
*/
public function getName()
{
if (is_null($this->name)) {
/** @psalm-var stdClass|array<string, mixed>|null $data */
$data = $this->raw(self::FIELD_NAME);
if (is_null($data)) {
return null;
}
$this->name = LocalizedStringModel::of($data);
}
return $this->name;
}
/**
* <p>Description of the ShoppingList.</p>
*
*
* @return null|LocalizedString
*/
public function getDescription()
{
if (is_null($this->description)) {
/** @psalm-var stdClass|array<string, mixed>|null $data */
$data = $this->raw(self::FIELD_DESCRIPTION);
if (is_null($data)) {
return null;
}
$this->description = LocalizedStringModel::of($data);
}
return $this->description;
}
/**
* <p><a href="ctp:api:type:ShoppingListLineItem">Line Items</a> (containing Products) to add to the ShoppingList.</p>
*
*
* @return null|ShoppingListLineItemDraftCollection
*/
public function getLineItems()
{
if (is_null($this->lineItems)) {
/** @psalm-var ?list<stdClass> $data */
$data = $this->raw(self::FIELD_LINE_ITEMS);
if (is_null($data)) {
return null;
}
$this->lineItems = ShoppingListLineItemDraftCollection::fromArray($data);
}
return $this->lineItems;
}
/**
* <p><a href="ctp:api:type:TextLineItem">Line Items</a> (containing text values) to add to the ShoppingList.</p>
*
*
* @return null|TextLineItemDraftCollection
*/
public function getTextLineItems()
{
if (is_null($this->textLineItems)) {
/** @psalm-var ?list<stdClass> $data */
$data = $this->raw(self::FIELD_TEXT_LINE_ITEMS);
if (is_null($data)) {
return null;
}
$this->textLineItems = TextLineItemDraftCollection::fromArray($data);
}
return $this->textLineItems;
}
/**
* <p>Custom Fields defined for the ShoppingList.</p>
*
*
* @return null|CustomFieldsDraft
*/
public function getCustom()
{
if (is_null($this->custom)) {
/** @psalm-var stdClass|array<string, mixed>|null $data */
$data = $this->raw(self::FIELD_CUSTOM);
if (is_null($data)) {
return null;
}
$this->custom = CustomFieldsDraftModel::of($data);
}
return $this->custom;
}
/**
* <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()
{
if (is_null($this->deleteDaysAfterLastModification)) {
/** @psalm-var ?int $data */
$data = $this->raw(self::FIELD_DELETE_DAYS_AFTER_LAST_MODIFICATION);
if (is_null($data)) {
return null;
}
$this->deleteDaysAfterLastModification = (int) $data;
}
return $this->deleteDaysAfterLastModification;
}
/**
* <p>Assigns the new ShoppingList to the <a href="ctp:api:type:Store">Store</a>. The Store assignment can not be modified.</p>
*
*
* @return null|StoreResourceIdentifier
*/
public function getStore()
{
if (is_null($this->store)) {
/** @psalm-var stdClass|array<string, mixed>|null $data */
$data = $this->raw(self::FIELD_STORE);
if (is_null($data)) {
return null;
}
$this->store = StoreResourceIdentifierModel::of($data);
}
return $this->store;
}
/**
* @param ?LocalizedString $name
*/
public function setName(?LocalizedString $name): void
{
$this->name = $name;
}
/**
* @param ?LocalizedString $description
*/
public function setDescription(?LocalizedString $description): void
{
$this->description = $description;
}
/**
* @param ?ShoppingListLineItemDraftCollection $lineItems
*/
public function setLineItems(?ShoppingListLineItemDraftCollection $lineItems): void
{
$this->lineItems = $lineItems;
}
/**
* @param ?TextLineItemDraftCollection $textLineItems
*/
public function setTextLineItems(?TextLineItemDraftCollection $textLineItems): void
{
$this->textLineItems = $textLineItems;
}
/**
* @param ?CustomFieldsDraft $custom
*/
public function setCustom(?CustomFieldsDraft $custom): void
{
$this->custom = $custom;
}
/**
* @param ?int $deleteDaysAfterLastModification
*/
public function setDeleteDaysAfterLastModification(?int $deleteDaysAfterLastModification): void
{
$this->deleteDaysAfterLastModification = $deleteDaysAfterLastModification;
}
/**
* @param ?StoreResourceIdentifier $store
*/
public function setStore(?StoreResourceIdentifier $store): void
{
$this->store = $store;
}
}