We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
resource_api_list
1 parent 917de2f commit 4322662Copy full SHA for 4322662
pyuploadcare/resources/base.py
@@ -13,7 +13,6 @@ class BaseApiList:
13
# ordering fields names which must be handled as datetime
14
datetime_ordering_fields = ()
15
16
- resource_api: ListCountMixin
17
constructor_name: str
18
resource_id_field: str
19
@@ -32,6 +31,10 @@ def __init__(
32
31
self._count: Optional[int] = None
33
self._client: "Uploadcare" = client
34
+ @property
35
+ def resource_api(self) -> ListCountMixin:
36
+ raise NotImplementedError
37
+
38
@property
39
def starting_point(self):
40
return self._starting_point
0 commit comments