massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / braintree / braintree / util / http.pyi
1 from typing import Any
2
3 from braintree import version as version
4 from braintree.environment import Environment as Environment
5 from braintree.exceptions.authentication_error import AuthenticationError as AuthenticationError
6 from braintree.exceptions.authorization_error import AuthorizationError as AuthorizationError
7 from braintree.exceptions.gateway_timeout_error import GatewayTimeoutError as GatewayTimeoutError
8 from braintree.exceptions.http.connection_error import ConnectionError as ConnectionError
9 from braintree.exceptions.http.invalid_response_error import InvalidResponseError as InvalidResponseError
10 from braintree.exceptions.http.timeout_error import (
11     ConnectTimeoutError as ConnectTimeoutError,
12     ReadTimeoutError as ReadTimeoutError,
13     TimeoutError as TimeoutError,
14 )
15 from braintree.exceptions.not_found_error import NotFoundError as NotFoundError
16 from braintree.exceptions.request_timeout_error import RequestTimeoutError as RequestTimeoutError
17 from braintree.exceptions.server_error import ServerError as ServerError
18 from braintree.exceptions.service_unavailable_error import ServiceUnavailableError as ServiceUnavailableError
19 from braintree.exceptions.too_many_requests_error import TooManyRequestsError as TooManyRequestsError
20 from braintree.exceptions.unexpected_error import UnexpectedError as UnexpectedError
21 from braintree.exceptions.upgrade_required_error import UpgradeRequiredError as UpgradeRequiredError
22 from braintree.util.xml_util import XmlUtil as XmlUtil
23
24 class Http:
25     class ContentType:
26         Xml: str
27         Multipart: str
28         Json: str
29     @staticmethod
30     def is_error_status(status): ...
31     @staticmethod
32     def raise_exception_from_status(status, message: Any | None = ...) -> None: ...
33     config: Any
34     environment: Any
35     def __init__(self, config, environment: Any | None = ...) -> None: ...
36     def post(self, path, params: Any | None = ...): ...
37     def delete(self, path): ...
38     def get(self, path): ...
39     def put(self, path, params: Any | None = ...): ...
40     def post_multipart(self, path, files, params: Any | None = ...): ...
41     def http_do(self, http_verb, path, headers, request_body): ...
42     def handle_exception(self, exception) -> None: ...