A new shade of Black (#11362)

This commit is contained in:
Alex Waygood
2024-02-04 16:38:55 -08:00
committed by GitHub
parent 7a6a749449
commit c49c84f319
76 changed files with 190 additions and 106 deletions
+1
View File
@@ -13,6 +13,7 @@ class Address(Resource):
Ground: str
Electronic: str
ShipToStore: str
@staticmethod
def create(params: Incomplete | None = None): ...
@staticmethod
@@ -7,6 +7,7 @@ class ApplePayCard(Resource):
AmEx: str
MasterCard: str
Visa: str
is_expired: Any
subscriptions: Any
def __init__(self, gateway, attributes) -> None: ...
@@ -35,6 +35,7 @@ class CreditCard(Resource):
Yes: str
No: str
Unknown: str
Commercial: Any
DurbinRegulated: Any
Debit: Any
@@ -12,6 +12,7 @@ class CreditCardVerification(AttributeGetter):
GatewayRejected: str
ProcessorDeclined: str
Verified: str
amount: Any
currency_iso_code: Any
processor_response_code: Any
@@ -8,6 +8,7 @@ class Disbursement(Resource):
class Type:
Credit: str
Debit: str
amount: Any
merchant_account: Any
def __init__(self, gateway, attributes) -> None: ...
+1
View File
@@ -40,6 +40,7 @@ class Dispute(AttributeGetter):
Effortless: str
Standard: str
NotProtected: str
@staticmethod
def accept(id): ...
@staticmethod
@@ -7,6 +7,7 @@ from braintree.successful_result import SuccessfulResult as SuccessfulResult
class DocumentUpload(Resource):
class Kind:
EvidenceDocument: str
@staticmethod
def create(params: Incomplete | None = None): ...
@staticmethod
@@ -5,5 +5,6 @@ class EuropeBankAccount(Resource):
class MandateType:
Business: str
Consumer: str
@staticmethod
def signature(): ...
@@ -19,6 +19,7 @@ class MerchantAccount(Resource):
Bank: str
Email: str
MobilePhone: str
FundingDestinations: Any
individual_details: Any
business_details: Any
@@ -30,6 +30,7 @@ class Subscription(Resource):
Expired: str
PastDue: str
Pending: str
@staticmethod
def create(params: Incomplete | None = None): ...
@staticmethod
@@ -97,6 +97,7 @@ class Transaction(Resource):
Telephone: str
Laundry: str
Other: str
@staticmethod
def adjust_authorization(transaction_id, amount): ...
@staticmethod
@@ -6,6 +6,7 @@ class TransactionLineItem(AttributeGetter):
class Kind:
Credit: str
Debit: str
def __init__(self, attributes) -> None: ...
@staticmethod
def find_all(transaction_id): ...
@@ -17,6 +17,7 @@ class UsBankAccountVerification(AttributeGetter):
IndependentCheck: str
TokenizedCheck: str
MicroTransfers: str
us_bank_account: Any
def __init__(self, gateway, attributes) -> None: ...
@staticmethod
+1
View File
@@ -27,6 +27,7 @@ class Http:
Xml: str
Multipart: str
Json: str
@staticmethod
def is_error_status(status): ...
@staticmethod
@@ -59,6 +59,7 @@ class WebhookNotification(Resource):
TransactionDisbursed: str
TransactionSettled: str
TransactionSettlementDeclined: str
@staticmethod
def parse(signature, payload): ...
@staticmethod