| Total Complexity | 2 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 21 | class WalletDailyStatisticsResponse extends AbstractResponse |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @Serializer\SerializedName("day_list") |
||
| 25 | * @Serializer\Type("array<Bitaps\WalletAPI\Response\WalletDailyStatistics\Model\DailyStatistics>") |
||
| 26 | * |
||
| 27 | */ |
||
| 28 | private array $dayList; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @Serializer\SerializedName("next_page") |
||
| 32 | * @Serializer\Type("bool") |
||
| 33 | * |
||
| 34 | * @var bool |
||
| 35 | */ |
||
| 36 | private bool $nextPage; |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @return array |
||
| 40 | */ |
||
| 41 | public function getDayList(): array |
||
| 42 | { |
||
| 43 | return $this->dayList; |
||
| 44 | } |
||
| 45 | |||
| 46 | /** |
||
| 47 | * @return bool |
||
| 48 | */ |
||
| 49 | public function isNextPage(): bool |
||
| 52 | } |
||
| 53 | } |
||
| 54 |