-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathLocalPickupLocalAddressResource.php
More file actions
383 lines (333 loc) · 6.97 KB
/
LocalPickupLocalAddressResource.php
File metadata and controls
383 lines (333 loc) · 6.97 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
<?php
namespace LocalPickup\Api\Resource;
use ApiPlatform\Metadata\ApiResource;
use ApiPlatform\Metadata\Get;
use LocalPickup\Api\State\LocalPickupLocalAddressProvider;
use Symfony\Component\Serializer\Annotation\Groups;
#[ApiResource(
operations: [
new Get(
uriTemplate: '/front/local-pickup-address/{id}',
name: 'api_local_pickup_address_get_front',
provider: LocalPickupLocalAddressProvider::class
),
],
normalizationContext: ['groups' => [LocalPickupLocalAddressResource::GROUP_FRONT_READ]]
)]
class LocalPickupLocalAddressResource
{
public const GROUP_FRONT_READ = 'front:local_pickup_address:read';
/**
* @var int|null
*/
#[Groups([self::GROUP_FRONT_READ])]
public ?int $id = null;
/**
* @var string|null
*/
#[Groups([self::GROUP_FRONT_READ])]
public ?string $label = null;
/**
* @var int|null
*/
#[Groups([self::GROUP_FRONT_READ])]
public ?int $customer = null;
/**
* @var int|null
*/
#[Groups([self::GROUP_FRONT_READ])]
public ?int $title = null;
/**
* @var string|null
*/
#[Groups([self::GROUP_FRONT_READ])]
public ?string $company = null;
/**
* @var string|null
*/
#[Groups([self::GROUP_FRONT_READ])]
public ?string $firstname = null;
/**
* @var string|null
*/
#[Groups([self::GROUP_FRONT_READ])]
public ?string $lastname = null;
/**
* @var string|null
*/
#[Groups([self::GROUP_FRONT_READ])]
public ?string $address1 = null;
/**
* @var string|null
*/
#[Groups([self::GROUP_FRONT_READ])]
public ?string $address2 = null;
/**
* @var string|null
*/
#[Groups([self::GROUP_FRONT_READ])]
public ?string $address3 = null;
/**
* @var string|null
*/
#[Groups([self::GROUP_FRONT_READ])]
public ?string $zipcode = null;
/**
* @var string|null
*/
#[Groups([self::GROUP_FRONT_READ])]
public ?string $city = null;
/**
* @var int|null
*/
#[Groups([self::GROUP_FRONT_READ])]
public ?int $country = null;
/**
* @var string|null
*/
#[Groups([self::GROUP_FRONT_READ])]
public ?string $phone = null;
/**
* @var string|null
*/
#[Groups([self::GROUP_FRONT_READ])]
public ?string $cellphone = null;
/**
* @var int|null
*/
#[Groups([self::GROUP_FRONT_READ])]
public ?int $default = null;
/**
* @return int|null
*/
public function getId(): ?int
{
return $this->id;
}
/**
* @param int|null $id
* @return void
*/
public function setId(?int $id): void
{
$this->id = $id;
}
/**
* @return string|null
*/
public function getLabel(): ?string
{
return $this->label;
}
/**
* @param string|null $label
* @return void
*/
public function setLabel(?string $label): void
{
$this->label = $label;
}
/**
* @return int|null
*/
public function getCustomer(): ?int
{
return $this->customer;
}
/**
* @param int|null $customer
* @return void
*/
public function setCustomer(?int $customer): void
{
$this->customer = $customer;
}
/**
* @return int|null
*/
public function getTitle(): ?int
{
return $this->title;
}
/**
* @param int|null $title
* @return void
*/
public function setTitle(?int $title): void
{
$this->title = $title;
}
/**
* @return string|null
*/
public function getLastname(): ?string
{
return $this->lastname;
}
/**
* @param string|null $lastname
* @return void
*/
public function setLastname(?string $lastname): void
{
$this->lastname = $lastname;
}
/**
* @param string|null $address1
* @return void
*/
public function setAddress1(?string $address1): void
{
$this->address1 = $address1;
}
/**
* @return string|null
*/
public function getAddress2(): ?string
{
return $this->address2;
}
/**
* @param string|null $address2
* @return void
*/
public function setAddress2(?string $address2): void
{
$this->address2 = $address2;
}
/**
* @return string|null
*/
public function getAddress3(): ?string
{
return $this->address3;
}
/**
* @param string|null $address3
* @return void
*/
public function setAddress3(?string $address3): void
{
$this->address3 = $address3;
}
/**
* @return string|null
*/
public function getZipcode(): ?string
{
return $this->zipcode;
}
/**
* @param string|null $zipcode
* @return void
*/
public function setZipcode(?string $zipcode): void
{
$this->zipcode = $zipcode;
}
/**
* @return string|null
*/
public function getCity(): ?string
{
return $this->city;
}
/**
* @param string|null $city
* @return void
*/
public function setCity(?string $city): void
{
$this->city = $city;
}
/**
* @return int|null
*/
public function getCountry(): ?int
{
return $this->country;
}
/**
* @param int|null $country
* @return void
*/
public function setCountry(?int $country): void
{
$this->country = $country;
}
/**
* @return string|null
*/
public function getPhone(): ?string
{
return $this->phone;
}
/**
* @param string|null $phone
* @return void
*/
public function setPhone(?string $phone): void
{
$this->phone = $phone;
}
/**
* @return string|null
*/
public function getCellphone(): ?string
{
return $this->cellphone;
}
/**
* @param string|null $cellphone
* @return void
*/
public function setCellphone(?string $cellphone): void
{
$this->cellphone = $cellphone;
}
/**
* @return int|null
*/
public function getDefault(): ?int
{
return $this->default;
}
/**
* @param int|null $default
* @return void
*/
public function setDefault(?int $default): void
{
$this->default = $default;
}
/**
* @return string|null
*/
public function getCompany(): ?string
{
return $this->company;
}
/**
* @param string|null $company
* @return void
*/
public function setCompany(?string $company): void
{
$this->company = $company;
}
/**
* @return string|null
*/
public function getFirstname(): ?string
{
return $this->firstname;
}
/**
* @param string|null $firstname
* @return void
*/
public function setFirstname(?string $firstname): void
{
$this->firstname = $firstname;
}
}