massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / braintree / braintree / merchant_account / merchant_account.pyi
1 from typing import Any
2
3 from braintree.configuration import Configuration as Configuration
4 from braintree.merchant_account import (
5     BusinessDetails as BusinessDetails,
6     FundingDetails as FundingDetails,
7     IndividualDetails as IndividualDetails,
8 )
9 from braintree.resource import Resource as Resource
10
11 class MerchantAccount(Resource):
12     class Status:
13         Active: str
14         Pending: str
15         Suspended: str
16     class FundingDestination:
17         Bank: str
18         Email: str
19         MobilePhone: str
20     FundingDestinations: Any
21     individual_details: Any
22     business_details: Any
23     funding_details: Any
24     master_merchant_account: Any
25     def __init__(self, gateway, attributes) -> None: ...
26     @staticmethod
27     def create(params: Any | None = ...): ...
28     @staticmethod
29     def update(id, attributes): ...
30     @staticmethod
31     def find(id): ...