massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / stripe / stripe / stripe_response.pyi
1 from typing import Any
2
3 class StripeResponseBase:
4     code: Any
5     headers: Any
6     def __init__(self, code, headers) -> None: ...
7     @property
8     def idempotency_key(self): ...
9     @property
10     def request_id(self): ...
11
12 class StripeResponse(StripeResponseBase):
13     body: Any
14     data: Any
15     def __init__(self, body, code, headers) -> None: ...
16
17 class StripeStreamResponse(StripeResponseBase):
18     io: Any
19     def __init__(self, io, code, headers) -> None: ...