1 | <?php |
||
8 | class CreateAddressRequest |
||
9 | { |
||
10 | /** |
||
11 | * @var string |
||
12 | */ |
||
13 | private $firstName; |
||
14 | |||
15 | /** |
||
16 | * @var string |
||
17 | */ |
||
18 | private $lastName; |
||
19 | |||
20 | /** |
||
21 | * @var string |
||
22 | */ |
||
23 | private $company; |
||
24 | |||
25 | /** |
||
26 | * @var string |
||
27 | */ |
||
28 | private $street; |
||
29 | |||
30 | /** |
||
31 | * @var string |
||
32 | */ |
||
33 | private $countryCode; |
||
34 | |||
35 | /** |
||
36 | * @var string |
||
37 | */ |
||
38 | private $provinceCode; |
||
39 | |||
40 | /** |
||
41 | * @var string |
||
42 | */ |
||
43 | private $city; |
||
44 | |||
45 | /** |
||
46 | * @var string |
||
47 | */ |
||
48 | private $postcode; |
||
49 | |||
50 | /** |
||
51 | * @var string |
||
52 | */ |
||
53 | private $phoneNumber; |
||
54 | |||
55 | /** |
||
56 | * CreateAddressRequest constructor. |
||
57 | * @param Request $request |
||
58 | */ |
||
59 | public function __construct(Request $request) |
||
71 | |||
72 | /** |
||
73 | * @return CreateAddress |
||
74 | */ |
||
75 | public function getCommand() |
||
89 | |||
90 | } |