massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / braintree / braintree / util / graphql_client.pyi
1 from typing import Any
2
3 from braintree.exceptions.authentication_error import AuthenticationError as AuthenticationError
4 from braintree.exceptions.authorization_error import AuthorizationError as AuthorizationError
5 from braintree.exceptions.not_found_error import NotFoundError as NotFoundError
6 from braintree.exceptions.server_error import ServerError as ServerError
7 from braintree.exceptions.service_unavailable_error import ServiceUnavailableError as ServiceUnavailableError
8 from braintree.exceptions.too_many_requests_error import TooManyRequestsError as TooManyRequestsError
9 from braintree.exceptions.unexpected_error import UnexpectedError as UnexpectedError
10 from braintree.exceptions.upgrade_required_error import UpgradeRequiredError as UpgradeRequiredError
11 from braintree.util.http import Http as Http
12
13 class GraphQLClient(Http):
14     @staticmethod
15     def raise_exception_for_graphql_error(response) -> None: ...
16     graphql_headers: Any
17     def __init__(self, config: Any | None = ..., environment: Any | None = ...) -> None: ...
18     def query(self, definition, variables: Any | None = ..., operation_name: Any | None = ...): ...