File tree Expand file tree Collapse file tree 1 file changed +11
-6
lines changed
src/apify_client/clients/base Expand file tree Collapse file tree 1 file changed +11
-6
lines changed Original file line number Diff line number Diff line change 1313class ListPage (Generic [T ]):
1414 """A single page of items returned from a list() method."""
1515
16- #: list: List of returned objects on this page
1716 items : list [T ]
18- #: int: Count of the returned objects on this page
17+ """List of returned objects on this page"""
18+
1919 count : int
20- #: int: The limit on the number of returned objects offset specified in the API call
20+ """Count of the returned objects on this page"""
21+
2122 offset : int
22- #: int: The offset of the first object specified in the API call
23+ """The limit on the number of returned objects offset specified in the API call"""
24+
2325 limit : int
24- #: int: Total number of objects matching the API call criteria
26+ """The offset of the first object specified in the API call"""
27+
2528 total : int
26- #: bool: Whether the listing is descending or not
29+ """Total number of objects matching the API call criteria"""
30+
2731 desc : bool
32+ """Whether the listing is descending or not"""
2833
2934 @ignore_docs
3035 def __init__ (self , data : dict ) -> None :
You can’t perform that action at this time.
0 commit comments