Skip to content

Commit 1ae4222

Browse files
authored
Add search and search_auto_paging_iter abstract methods (#873)
1 parent fcf1832 commit 1ae4222

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

stripe/api_resources/abstract/searchable_api_resource.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,11 @@ def _search(
2121
stripe_account=stripe_account,
2222
params=params,
2323
)
24+
25+
@classmethod
26+
def search(cls, *args, **kwargs):
27+
raise NotImplementedError
28+
29+
@classmethod
30+
def search_auto_paging_iter(cls, *args, **kwargs):
31+
raise NotImplementedError

0 commit comments

Comments
 (0)