| Total Complexity | 2 |
| Total Lines | 32 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 22 | class GetAddressesResponse extends AbstractResponse |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * @Serializer\SerializedName("address_list") |
||
| 26 | * @Serializer\Type("array<Bitaps\WalletAPI\Response\Addresses\Model\Address>") |
||
| 27 | * |
||
| 28 | * @var Address[] |
||
| 29 | */ |
||
| 30 | private array $txList; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @Serializer\SerializedName("next_page") |
||
| 34 | * @Serializer\Type("bool") |
||
| 35 | * |
||
| 36 | * @var bool |
||
| 37 | */ |
||
| 38 | private bool $nextPage; |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @return Address[] |
||
| 42 | */ |
||
| 43 | public function getTxList(): array |
||
| 44 | { |
||
| 45 | return $this->txList; |
||
| 46 | } |
||
| 47 | |||
| 48 | /** |
||
| 49 | * @return bool |
||
| 50 | */ |
||
| 51 | public function isNextPage(): bool |
||
| 54 | } |
||
| 55 | } |
||
| 56 |