1 | <?php |
||
21 | class EdgeDto |
||
22 | { |
||
23 | /** |
||
24 | * @var string |
||
25 | */ |
||
26 | private $fromUnLocode; |
||
27 | |||
28 | /** |
||
29 | * @var string |
||
30 | */ |
||
31 | private $toUnLocode; |
||
32 | |||
33 | /** |
||
34 | * @var string ISO8601 formatted date |
||
35 | */ |
||
36 | private $fromDate; |
||
37 | |||
38 | /** |
||
39 | * @var string ISO8601 formatted date |
||
40 | */ |
||
41 | private $toDate; |
||
42 | |||
43 | /** |
||
44 | * @param string $fromDate |
||
45 | */ |
||
46 | public function setFromDate(string $fromDate) |
||
50 | |||
51 | /** |
||
52 | * @return string |
||
53 | */ |
||
54 | public function getFromDate(): string |
||
58 | |||
59 | /** |
||
60 | * @param string $fromUnLocode |
||
61 | */ |
||
62 | public function setFromUnLocode(string $fromUnLocode) |
||
66 | |||
67 | /** |
||
68 | * @return string |
||
69 | */ |
||
70 | public function getFromUnLocode(): string |
||
74 | |||
75 | /** |
||
76 | * @param string $toDate |
||
77 | */ |
||
78 | public function setToDate(string $toDate) |
||
82 | |||
83 | /** |
||
84 | * @return string |
||
85 | */ |
||
86 | public function getToDate(): string |
||
90 | |||
91 | /** |
||
92 | * @param string $toUnLocode |
||
93 | */ |
||
94 | public function setToUnLocode(string $toUnLocode) |
||
98 | |||
99 | /** |
||
100 | * @return string |
||
101 | */ |
||
102 | public function getToUnLocode(): string |
||
106 | } |
||
107 |