File tree Expand file tree Collapse file tree 4 files changed +7
-1
lines changed Expand file tree Collapse file tree 4 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 1
- version = " 4.28 .*"
1
+ version = " 4.29 .*"
2
2
upstream_repository = " https://github.com/braintree/braintree_python"
Original file line number Diff line number Diff line change @@ -32,6 +32,9 @@ class ErrorCodes:
32
32
StreetAddressIsTooLong : Final = "81812"
33
33
TooManyAddressesPerCustomer : Final = "91818"
34
34
35
+ class AndroidPay :
36
+ AndroidPayCardsAreNotAccepted : Final = "83708"
37
+
35
38
class ApplePay :
36
39
ApplePayCardsAreNotAccepted : Final = "83501"
37
40
CustomerIdIsRequiredForVaulting : Final = "83502"
Original file line number Diff line number Diff line change @@ -135,6 +135,8 @@ class Transaction(Resource):
135
135
@staticmethod
136
136
def submit_for_settlement_signature (): ...
137
137
@staticmethod
138
+ def submit_for_partial_settlement_signature (): ...
139
+ @staticmethod
138
140
def package_tracking_signature (): ...
139
141
@staticmethod
140
142
def package_tracking (transaction_id , params : Incomplete | None = None ): ...
Original file line number Diff line number Diff line change @@ -51,6 +51,7 @@ class WebhookNotification(Resource):
51
51
PaymentMethodCustomerDataUpdated : Final = "payment_method_customer_data_updated"
52
52
PaymentMethodRevokedByCustomer : Final = "payment_method_revoked_by_customer"
53
53
RecipientUpdatedGrantedPaymentMethod : Final = "recipient_updated_granted_payment_method"
54
+ RefundFailed : Final = "refund_failed"
54
55
SubMerchantAccountApproved : Final = "sub_merchant_account_approved"
55
56
SubMerchantAccountDeclined : Final = "sub_merchant_account_declined"
56
57
SubscriptionBillingSkipped : Final = "subscription_billing_skipped"
You can’t perform that action at this time.
0 commit comments