| 1 | <?php namespace OutlookRestClient\Facade\Requests; |
||
| 19 | final class CalendarVO implements IValueObject |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var string |
||
| 23 | */ |
||
| 24 | private $name; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * CalendarVO constructor. |
||
| 28 | * @param string $name |
||
| 29 | */ |
||
| 30 | public function __construct($name) |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @return string |
||
| 37 | */ |
||
| 38 | public function getName() |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @return array |
||
| 45 | */ |
||
| 46 | public function toArray(){ |
||
| 49 | } |