Connection.php
2 months ago
Edge.php
2 months ago
IdCursorFilter.php
2 months ago
PageInfo.php
2 months ago
PaginationParams.php
2 months ago
PageInfo.php
19 lines
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace Automattic\WooCommerce\Api\Pagination; |
| 6 | |
| 7 | /** |
| 8 | * Pagination metadata for a connection. |
| 9 | */ |
| 10 | class PageInfo { |
| 11 | public bool $has_next_page; |
| 12 | |
| 13 | public bool $has_previous_page; |
| 14 | |
| 15 | public ?string $start_cursor; |
| 16 | |
| 17 | public ?string $end_cursor; |
| 18 | } |
| 19 |