File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed
stubs/braintree/braintree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change 11from _typeshed import Incomplete
2-
2+ from braintree .android_pay_card import AndroidPayCard
3+ from braintree .apple_pay_card import ApplePayCard
4+ from braintree .credit_card import CreditCard
35from braintree .error_result import ErrorResult
6+ from braintree .paypal_account import PayPalAccount
47from braintree .resource import Resource
58from braintree .successful_result import SuccessfulResult
9+ from braintree .us_bank_account import UsBankAccount
10+ from braintree .venmo_account import VenmoAccount
11+ from braintree .visa_checkout_card import VisaCheckoutCard
612
713class PaymentMethod (Resource ):
814 @staticmethod
915 def create (params : dict [str , Incomplete ] | None = None ) -> SuccessfulResult | ErrorResult : ...
1016 @staticmethod
11- def find (payment_method_token : str ) -> Resource : ...
17+ def find (
18+ payment_method_token : str ,
19+ ) -> AndroidPayCard | ApplePayCard | CreditCard | PayPalAccount | UsBankAccount | VenmoAccount | VisaCheckoutCard : ...
1220 @staticmethod
1321 def update (payment_method_token : str , params ) -> SuccessfulResult | ErrorResult : ...
1422 @staticmethod
You can’t perform that action at this time.
0 commit comments