| 1 | <?php |
||
| 7 | class Tariff extends Entity |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var string |
||
| 11 | */ |
||
| 12 | private $description; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @var string |
||
| 16 | */ |
||
| 17 | private $period; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var string |
||
| 21 | */ |
||
| 22 | private $startPeriod; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @return string |
||
| 26 | */ |
||
| 27 | public function getDescription(): string |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @param string $description |
||
| 34 | */ |
||
| 35 | public function setDescription(string $description) |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @return string |
||
| 42 | */ |
||
| 43 | public function getPeriod(): string |
||
| 47 | |||
| 48 | /** |
||
| 49 | * @param string $period |
||
| 50 | */ |
||
| 51 | public function setPeriod(string $period) |
||
| 55 | |||
| 56 | /** |
||
| 57 | * @return string |
||
| 58 | */ |
||
| 59 | public function getStartPeriod(): string |
||
| 63 | |||
| 64 | /** |
||
| 65 | * @param string $startPeriod |
||
| 66 | */ |
||
| 67 | public function setStartPeriod(string $startPeriod) |
||
| 71 | } |
||
| 72 |