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
1 from typing import Any
2
3 from braintree.attribute_getter import AttributeGetter as AttributeGetter
4 from braintree.configuration import Configuration as Configuration
5 from braintree.resource import Resource as Resource
6 from braintree.risk_data import RiskData as RiskData
7 from braintree.three_d_secure_info import ThreeDSecureInfo as ThreeDSecureInfo
8
9 class CreditCardVerification(AttributeGetter):
10     class Status:
11         Failed: str
12         GatewayRejected: str
13         ProcessorDeclined: str
14         Verified: str
15     amount: Any
16     currency_iso_code: Any
17     processor_response_code: Any
18     processor_response_text: Any
19     network_response_code: Any
20     network_response_text: Any
21     risk_data: Any
22     three_d_secure_info: Any
23     def __init__(self, gateway, attributes) -> None: ...
24     @staticmethod
25     def find(verification_id): ...
26     @staticmethod
27     def search(*query): ...
28     @staticmethod
29     def create(params): ...
30     @staticmethod
31     def create_signature(): ...
32     def __eq__(self, other): ...