File "PageInfo.php"

Full path: /home/sbkuplnl/public_html/wp-content/plugins/woocommerce/src/Api/Pagination/PageInfo.php
File size: 0.27 KB (276 B bytes)
MIME-type: text/x-php; charset=us-ascii
Charset: utf-8

Download   Open   Edit   Advanced Editor   Back

<?php

declare(strict_types=1);

namespace Automattic\WooCommerce\Api\Pagination;

/**
 * Pagination metadata for a connection.
 */
class PageInfo {
	public bool $has_next_page;

	public bool $has_previous_page;

	public ?string $start_cursor;

	public ?string $end_cursor;
}