dolibarr.bankimport/vendor/nemiah/php-fints/lib/Fhp/Segment/Paginateable.php
2026-02-13 18:30:28 +01:00

12 lines
325 B
PHP

<?php
namespace Fhp\Segment;
/**
* Marks a request segment as supporting pagination, this means that the bank can split the result into several
* response segments that have to be queried one by one via the pagination token.
*/
interface Paginateable
{
public function setPaginationToken(string $paginationToken);
}