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 13
13
class ListPage (Generic [T ]):
14
14
"""A single page of items returned from a list() method."""
15
15
16
- #: list: List of returned objects on this page
17
16
items : list [T ]
18
- #: int: Count of the returned objects on this page
17
+ """List of returned objects on this page"""
18
+
19
19
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
+
21
22
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
+
23
25
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
+
25
28
total : int
26
- #: bool: Whether the listing is descending or not
29
+ """Total number of objects matching the API call criteria"""
30
+
27
31
desc : bool
32
+ """Whether the listing is descending or not"""
28
33
29
34
@ignore_docs
30
35
def __init__ (self , data : dict ) -> None :
You can’t perform that action at this time.
0 commit comments