massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / braintree / braintree / address.pyi
1 from typing import Any
2
3 from braintree.configuration import Configuration as Configuration
4 from braintree.error_result import ErrorResult as ErrorResult
5 from braintree.resource import Resource as Resource
6 from braintree.successful_result import SuccessfulResult as SuccessfulResult
7
8 class Address(Resource):
9     class ShippingMethod:
10         SameDay: str
11         NextDay: str
12         Priority: str
13         Ground: str
14         Electronic: str
15         ShipToStore: str
16     @staticmethod
17     def create(params: Any | None = ...): ...
18     @staticmethod
19     def delete(customer_id, address_id): ...
20     @staticmethod
21     def find(customer_id, address_id): ...
22     @staticmethod
23     def update(customer_id, address_id, params: Any | None = ...): ...
24     @staticmethod
25     def create_signature(): ...
26     @staticmethod
27     def update_signature(): ...