massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / braintree / braintree / customer_gateway.pyi
1 from typing import Any
2
3 from braintree.customer import Customer as Customer
4 from braintree.error_result import ErrorResult as ErrorResult
5 from braintree.exceptions.not_found_error import NotFoundError as NotFoundError
6 from braintree.ids_search import IdsSearch as IdsSearch
7 from braintree.resource import Resource as Resource
8 from braintree.resource_collection import ResourceCollection as ResourceCollection
9 from braintree.successful_result import SuccessfulResult as SuccessfulResult
10
11 class CustomerGateway:
12     gateway: Any
13     config: Any
14     def __init__(self, gateway) -> None: ...
15     def all(self): ...
16     def create(self, params: Any | None = ...): ...
17     def delete(self, customer_id): ...
18     def find(self, customer_id, association_filter_id: Any | None = ...): ...
19     def search(self, *query): ...
20     def update(self, customer_id, params: Any | None = ...): ...