|
73 | 73 | management_operations, |
74 | 74 | auth_stream_enrollment, |
75 | 75 | external_bank_accounts, |
| 76 | + transaction_monitoring, |
76 | 77 | tokenization_decisioning, |
77 | 78 | ) |
78 | 79 | from .resources.holds import Holds, AsyncHolds |
|
108 | 109 | from .resources.credit_products.credit_products import CreditProducts, AsyncCreditProducts |
109 | 110 | from .resources.financial_accounts.financial_accounts import FinancialAccounts, AsyncFinancialAccounts |
110 | 111 | from .resources.external_bank_accounts.external_bank_accounts import ExternalBankAccounts, AsyncExternalBankAccounts |
| 112 | + from .resources.transaction_monitoring.transaction_monitoring import ( |
| 113 | + TransactionMonitoring, |
| 114 | + AsyncTransactionMonitoring, |
| 115 | + ) |
111 | 116 |
|
112 | 117 | __all__ = [ |
113 | 118 | "ENVIRONMENTS", |
@@ -241,6 +246,12 @@ def auth_rules(self) -> AuthRules: |
241 | 246 |
|
242 | 247 | return AuthRules(self) |
243 | 248 |
|
| 249 | + @cached_property |
| 250 | + def transaction_monitoring(self) -> TransactionMonitoring: |
| 251 | + from .resources.transaction_monitoring import TransactionMonitoring |
| 252 | + |
| 253 | + return TransactionMonitoring(self) |
| 254 | + |
244 | 255 | @cached_property |
245 | 256 | def auth_stream_enrollment(self) -> AuthStreamEnrollment: |
246 | 257 | from .resources.auth_stream_enrollment import AuthStreamEnrollment |
@@ -671,6 +682,12 @@ def auth_rules(self) -> AsyncAuthRules: |
671 | 682 |
|
672 | 683 | return AsyncAuthRules(self) |
673 | 684 |
|
| 685 | + @cached_property |
| 686 | + def transaction_monitoring(self) -> AsyncTransactionMonitoring: |
| 687 | + from .resources.transaction_monitoring import AsyncTransactionMonitoring |
| 688 | + |
| 689 | + return AsyncTransactionMonitoring(self) |
| 690 | + |
674 | 691 | @cached_property |
675 | 692 | def auth_stream_enrollment(self) -> AsyncAuthStreamEnrollment: |
676 | 693 | from .resources.auth_stream_enrollment import AsyncAuthStreamEnrollment |
@@ -1015,6 +1032,12 @@ def auth_rules(self) -> auth_rules.AuthRulesWithRawResponse: |
1015 | 1032 |
|
1016 | 1033 | return AuthRulesWithRawResponse(self._client.auth_rules) |
1017 | 1034 |
|
| 1035 | + @cached_property |
| 1036 | + def transaction_monitoring(self) -> transaction_monitoring.TransactionMonitoringWithRawResponse: |
| 1037 | + from .resources.transaction_monitoring import TransactionMonitoringWithRawResponse |
| 1038 | + |
| 1039 | + return TransactionMonitoringWithRawResponse(self._client.transaction_monitoring) |
| 1040 | + |
1018 | 1041 | @cached_property |
1019 | 1042 | def auth_stream_enrollment(self) -> auth_stream_enrollment.AuthStreamEnrollmentWithRawResponse: |
1020 | 1043 | from .resources.auth_stream_enrollment import AuthStreamEnrollmentWithRawResponse |
@@ -1218,6 +1241,12 @@ def auth_rules(self) -> auth_rules.AsyncAuthRulesWithRawResponse: |
1218 | 1241 |
|
1219 | 1242 | return AsyncAuthRulesWithRawResponse(self._client.auth_rules) |
1220 | 1243 |
|
| 1244 | + @cached_property |
| 1245 | + def transaction_monitoring(self) -> transaction_monitoring.AsyncTransactionMonitoringWithRawResponse: |
| 1246 | + from .resources.transaction_monitoring import AsyncTransactionMonitoringWithRawResponse |
| 1247 | + |
| 1248 | + return AsyncTransactionMonitoringWithRawResponse(self._client.transaction_monitoring) |
| 1249 | + |
1221 | 1250 | @cached_property |
1222 | 1251 | def auth_stream_enrollment(self) -> auth_stream_enrollment.AsyncAuthStreamEnrollmentWithRawResponse: |
1223 | 1252 | from .resources.auth_stream_enrollment import AsyncAuthStreamEnrollmentWithRawResponse |
@@ -1421,6 +1450,12 @@ def auth_rules(self) -> auth_rules.AuthRulesWithStreamingResponse: |
1421 | 1450 |
|
1422 | 1451 | return AuthRulesWithStreamingResponse(self._client.auth_rules) |
1423 | 1452 |
|
| 1453 | + @cached_property |
| 1454 | + def transaction_monitoring(self) -> transaction_monitoring.TransactionMonitoringWithStreamingResponse: |
| 1455 | + from .resources.transaction_monitoring import TransactionMonitoringWithStreamingResponse |
| 1456 | + |
| 1457 | + return TransactionMonitoringWithStreamingResponse(self._client.transaction_monitoring) |
| 1458 | + |
1424 | 1459 | @cached_property |
1425 | 1460 | def auth_stream_enrollment(self) -> auth_stream_enrollment.AuthStreamEnrollmentWithStreamingResponse: |
1426 | 1461 | from .resources.auth_stream_enrollment import AuthStreamEnrollmentWithStreamingResponse |
@@ -1624,6 +1659,12 @@ def auth_rules(self) -> auth_rules.AsyncAuthRulesWithStreamingResponse: |
1624 | 1659 |
|
1625 | 1660 | return AsyncAuthRulesWithStreamingResponse(self._client.auth_rules) |
1626 | 1661 |
|
| 1662 | + @cached_property |
| 1663 | + def transaction_monitoring(self) -> transaction_monitoring.AsyncTransactionMonitoringWithStreamingResponse: |
| 1664 | + from .resources.transaction_monitoring import AsyncTransactionMonitoringWithStreamingResponse |
| 1665 | + |
| 1666 | + return AsyncTransactionMonitoringWithStreamingResponse(self._client.transaction_monitoring) |
| 1667 | + |
1627 | 1668 | @cached_property |
1628 | 1669 | def auth_stream_enrollment(self) -> auth_stream_enrollment.AsyncAuthStreamEnrollmentWithStreamingResponse: |
1629 | 1670 | from .resources.auth_stream_enrollment import AsyncAuthStreamEnrollmentWithStreamingResponse |
|
0 commit comments