massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / braintree / braintree / disbursement.pyi
1 from typing import Any
2
3 from braintree.merchant_account import MerchantAccount as MerchantAccount
4 from braintree.resource import Resource as Resource
5 from braintree.transaction_search import TransactionSearch as TransactionSearch
6
7 class Disbursement(Resource):
8     class Type:
9         Credit: str
10         Debit: str
11     amount: Any
12     merchant_account: Any
13     def __init__(self, gateway, attributes) -> None: ...
14     def transactions(self): ...
15     def is_credit(self): ...
16     def is_debit(self): ...