Skip to content

Commit

Permalink
Add search and search_auto_paging_iter abstract methods (#873)
Browse files Browse the repository at this point in the history
  • Loading branch information
yejia-stripe committed Sep 6, 2022
1 parent fcf1832 commit 1ae4222
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions stripe/api_resources/abstract/searchable_api_resource.py
Expand Up @@ -21,3 +21,11 @@ def _search(
stripe_account=stripe_account,
params=params,
)

@classmethod
def search(cls, *args, **kwargs):
raise NotImplementedError

@classmethod
def search_auto_paging_iter(cls, *args, **kwargs):
raise NotImplementedError

0 comments on commit 1ae4222

Please sign in to comment.