Zoom plugin: next_page_token is an attribute of Pagination - refs BT#17288

pull/3274/head
Sébastien Ducoulombier 6 years ago
parent e627d9c2d9
commit a1ed80a9ca
  1. 6
      plugin/zoom/lib/API/Pagination.php
  2. 6
      plugin/zoom/lib/API/ParticipantList.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;
}

@ -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;

Loading…
Cancel
Save