| 1 | <?php |
||
| 16 | class PerformanceEventsResponse |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @var Performance[] |
||
| 20 | * |
||
| 21 | * @Type("array<App\Entity\PerformanceEvent>") |
||
| 22 | * @Expose |
||
| 23 | */ |
||
| 24 | protected $performanceEvents; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @var int |
||
| 28 | * |
||
| 29 | * @Type("integer") |
||
| 30 | * @Accessor(getter="getCount") |
||
| 31 | * @Expose |
||
| 32 | */ |
||
| 33 | protected $count; |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @return Performance[] |
||
| 37 | */ |
||
| 38 | 2 | public function getPerformanceEvents() |
|
| 42 | |||
| 43 | /** |
||
| 44 | * @param mixed $performanceEvents |
||
| 45 | * @return $this |
||
| 46 | */ |
||
| 47 | 2 | public function setPerformanceEvents($performanceEvents) |
|
| 53 | |||
| 54 | /** |
||
| 55 | * @return int |
||
| 56 | */ |
||
| 57 | 2 | public function getCount() |
|
| 61 | } |
||
| 62 |