Open w-p opened 6 years ago
When retrieving a list of subscribers via List.active(), an empty list has 0 pages and 1 numbered page while a populated list has 1 pages and also 1 numbered page. In both cases the caller receives a 'page', right?
List.active()
More explicitly:
NumberOfPages > 0
PageNumber > 0
NumberOfPages == 0
Empty List:
'NumberOfPages': 0, 'RecordsOnThisPage': 0, 'PageNumber': 1, ...
Populated List:
'NumberOfPages': 1, 'RecordsOnThisPage': 2, 'PageNumber': 1, ...
When retrieving a list of subscribers via
List.active()
, an empty list has 0 pages and 1 numbered page while a populated list has 1 pages and also 1 numbered page. In both cases the caller receives a 'page', right?More explicitly:
NumberOfPages > 0
PageNumber > 0
NumberOfPages == 0
PageNumber > 0
Empty List:
Populated List: