| Server IP : 35.80.110.71 / Your IP : 216.73.216.221 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ip-172-31-21-44 6.17.0-1019-aws #19~24.04.1-Ubuntu SMP Tue Jun 23 18:53:06 UTC 2026 x86_64 User : ubuntu ( 1000) PHP Version : 8.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /lib/python3/dist-packages/stripe-stubs/api_resources/ |
Upload File : |
from collections.abc import Iterator
from typing import Any, ClassVar, Generic, TypeVar
from typing_extensions import Literal, Self
from stripe.stripe_object import StripeObject
_T = TypeVar("_T")
class SearchResultObject(StripeObject, Generic[_T]):
OBJECT_NAME: ClassVar[Literal["search_result"]]
url: str
has_more: bool
data: list[_T]
next_page: str
total_count: int
def search(
self, api_key: str | None = None, stripe_version: str | None = None, stripe_account: str | None = None, **params
) -> Self: ...
def __getitem__(self, k: str) -> Any: ...
def __iter__(self) -> Iterator[_T]: ...
def __len__(self) -> int: ...
def auto_paging_iter(self) -> Iterator[_T]: ...
@classmethod
def empty_search_result(
cls, api_key: str | None = None, stripe_version: str | None = None, stripe_account: str | None = None
) -> Self: ...
@property
def is_empty(self) -> bool: ...
def next_search_result_page(
self, api_key: str | None = None, stripe_version: str | None = None, stripe_account: str | None = None, **params
) -> Self: ...