massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / braintree / braintree / credit_card_verification.pyi
diff --git a/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stubs/braintree/braintree/credit_card_verification.pyi b/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stubs/braintree/braintree/credit_card_verification.pyi
new file mode 100644 (file)
index 0000000..29fb9d5
--- /dev/null
@@ -0,0 +1,32 @@
+from typing import Any
+
+from braintree.attribute_getter import AttributeGetter as AttributeGetter
+from braintree.configuration import Configuration as Configuration
+from braintree.resource import Resource as Resource
+from braintree.risk_data import RiskData as RiskData
+from braintree.three_d_secure_info import ThreeDSecureInfo as ThreeDSecureInfo
+
+class CreditCardVerification(AttributeGetter):
+    class Status:
+        Failed: str
+        GatewayRejected: str
+        ProcessorDeclined: str
+        Verified: str
+    amount: Any
+    currency_iso_code: Any
+    processor_response_code: Any
+    processor_response_text: Any
+    network_response_code: Any
+    network_response_text: Any
+    risk_data: Any
+    three_d_secure_info: Any
+    def __init__(self, gateway, attributes) -> None: ...
+    @staticmethod
+    def find(verification_id): ...
+    @staticmethod
+    def search(*query): ...
+    @staticmethod
+    def create(params): ...
+    @staticmethod
+    def create_signature(): ...
+    def __eq__(self, other): ...