massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / braintree / braintree / credentials_parser.pyi
1 from typing import Any
2
3 from braintree.environment import Environment as Environment
4 from braintree.exceptions.configuration_error import ConfigurationError as ConfigurationError
5
6 class CredentialsParser:
7     client_id: Any
8     client_secret: Any
9     access_token: Any
10     def __init__(self, client_id: Any | None = ..., client_secret: Any | None = ..., access_token: Any | None = ...) -> None: ...
11     environment: Any
12     def parse_client_credentials(self) -> None: ...
13     merchant_id: Any
14     def parse_access_token(self) -> None: ...
15     def get_environment(self, credential): ...
16     def get_merchant_id(self, credential): ...