| 1 | <?php declare(strict_types = 1); |
||
| 9 | class EventSummary |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * The path to the individual event resource. |
||
| 13 | * |
||
| 14 | * @var string |
||
| 15 | */ |
||
| 16 | private $resourceURI; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * The name of the event. |
||
| 20 | * |
||
| 21 | * @var string |
||
| 22 | */ |
||
| 23 | private $name; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @return string |
||
| 27 | */ |
||
| 28 | public function getResourceURI() |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @param string $resourceURI |
||
| 35 | */ |
||
| 36 | public function setResourceURI(string $resourceURI) |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @return string |
||
| 43 | */ |
||
| 44 | public function getName() |
||
| 48 | |||
| 49 | /** |
||
| 50 | * @param string $name |
||
| 51 | */ |
||
| 52 | public function setName(string $name) |
||
| 56 | } |
||
| 57 |