diff --git a/plugin/zoom/lib/API/Pagination.php b/plugin/zoom/lib/API/Pagination.php index 35ec8f88c5..d028bee4db 100644 --- a/plugin/zoom/lib/API/Pagination.php +++ b/plugin/zoom/lib/API/Pagination.php @@ -18,4 +18,10 @@ trait Pagination /** @var int */ public $total_records; + + /** @var string The next page token is used to paginate through large result sets. + * A next page token will be returned whenever the set of available results exceeds the current page size. + * The expiration period for this token is 15 minutes. + */ + public $next_page_token; } diff --git a/plugin/zoom/lib/API/ParticipantList.php b/plugin/zoom/lib/API/ParticipantList.php index b64b037225..1cd5cdc0e7 100644 --- a/plugin/zoom/lib/API/ParticipantList.php +++ b/plugin/zoom/lib/API/ParticipantList.php @@ -9,12 +9,6 @@ class ParticipantList { use Pagination; - /** @var string The next page token is used to paginate through large result sets. - * A next page token will be returned whenever the set of available results exceeds the current page size. - * The expiration period for this token is 15 minutes. - */ - public $next_page_token; - /** @var ParticipantListItem[] */ public $participants;