| 1 | <?php |
||
| 15 | class HistoryResponse extends AbstractPaginatedModel |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var Array[] |
||
| 19 | * @Type("array<App\Entity\History>") |
||
| 20 | * @Expose |
||
| 21 | */ |
||
| 22 | protected $history; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @var int |
||
| 26 | * |
||
| 27 | * @Type("integer") |
||
| 28 | * @Accessor(getter="getCount") |
||
| 29 | * @Expose |
||
| 30 | */ |
||
| 31 | protected $count; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @return mixed |
||
| 35 | */ |
||
| 36 | 1 | public function getHistory() |
|
| 40 | |||
| 41 | /** |
||
| 42 | * @param mixed $history |
||
| 43 | * @return $this |
||
| 44 | */ |
||
| 45 | 1 | public function setHistory($history) |
|
| 51 | |||
| 52 | /** |
||
| 53 | * @return int |
||
| 54 | */ |
||
| 55 | 1 | public function getCount() |
|
| 59 | } |
||
| 60 |