Skip to content

Commit eddc362

Browse files
committed
Update docstrings
1 parent 8d80bee commit eddc362

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

src/apify_client/clients/base/resource_collection_client.py

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,23 @@
1313
class 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:

0 commit comments

Comments
 (0)