massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / braintree / braintree / address_gateway.pyi
1 from typing import Any
2
3 from braintree.address import Address as Address
4 from braintree.error_result import ErrorResult as ErrorResult
5 from braintree.exceptions.not_found_error import NotFoundError as NotFoundError
6 from braintree.resource import Resource as Resource
7 from braintree.successful_result import SuccessfulResult as SuccessfulResult
8
9 class AddressGateway:
10     gateway: Any
11     config: Any
12     def __init__(self, gateway) -> None: ...
13     def create(self, params: Any | None = ...): ...
14     def delete(self, customer_id, address_id): ...
15     def find(self, customer_id, address_id): ...
16     def update(self, customer_id, address_id, params: Any | None = ...): ...