|
61 | 61 | digital_card_art, |
62 | 62 | network_programs, |
63 | 63 | external_payments, |
64 | | - aggregate_balances, |
65 | 64 | financial_accounts, |
66 | 65 | responder_endpoints, |
67 | 66 | management_operations, |
|
93 | 92 | from .resources.network_programs import NetworkPrograms, AsyncNetworkPrograms |
94 | 93 | from .resources.external_payments import ExternalPayments, AsyncExternalPayments |
95 | 94 | from .resources.three_ds.three_ds import ThreeDS, AsyncThreeDS |
96 | | - from .resources.aggregate_balances import AggregateBalances, AsyncAggregateBalances |
97 | 95 | from .resources.responder_endpoints import ( |
98 | 96 | ResponderEndpoints, |
99 | 97 | AsyncResponderEndpoints, |
@@ -284,12 +282,6 @@ def balances(self) -> Balances: |
284 | 282 |
|
285 | 283 | return Balances(self) |
286 | 284 |
|
287 | | - @cached_property |
288 | | - def aggregate_balances(self) -> AggregateBalances: |
289 | | - from .resources.aggregate_balances import AggregateBalances |
290 | | - |
291 | | - return AggregateBalances(self) |
292 | | - |
293 | 285 | @cached_property |
294 | 286 | def disputes(self) -> Disputes: |
295 | 287 | from .resources.disputes import Disputes |
@@ -697,12 +689,6 @@ def balances(self) -> AsyncBalances: |
697 | 689 |
|
698 | 690 | return AsyncBalances(self) |
699 | 691 |
|
700 | | - @cached_property |
701 | | - def aggregate_balances(self) -> AsyncAggregateBalances: |
702 | | - from .resources.aggregate_balances import AsyncAggregateBalances |
703 | | - |
704 | | - return AsyncAggregateBalances(self) |
705 | | - |
706 | 692 | @cached_property |
707 | 693 | def disputes(self) -> AsyncDisputes: |
708 | 694 | from .resources.disputes import AsyncDisputes |
@@ -1041,12 +1027,6 @@ def balances(self) -> balances.BalancesWithRawResponse: |
1041 | 1027 |
|
1042 | 1028 | return BalancesWithRawResponse(self._client.balances) |
1043 | 1029 |
|
1044 | | - @cached_property |
1045 | | - def aggregate_balances(self) -> aggregate_balances.AggregateBalancesWithRawResponse: |
1046 | | - from .resources.aggregate_balances import AggregateBalancesWithRawResponse |
1047 | | - |
1048 | | - return AggregateBalancesWithRawResponse(self._client.aggregate_balances) |
1049 | | - |
1050 | 1030 | @cached_property |
1051 | 1031 | def disputes(self) -> disputes.DisputesWithRawResponse: |
1052 | 1032 | from .resources.disputes import DisputesWithRawResponse |
@@ -1250,14 +1230,6 @@ def balances(self) -> balances.AsyncBalancesWithRawResponse: |
1250 | 1230 |
|
1251 | 1231 | return AsyncBalancesWithRawResponse(self._client.balances) |
1252 | 1232 |
|
1253 | | - @cached_property |
1254 | | - def aggregate_balances( |
1255 | | - self, |
1256 | | - ) -> aggregate_balances.AsyncAggregateBalancesWithRawResponse: |
1257 | | - from .resources.aggregate_balances import AsyncAggregateBalancesWithRawResponse |
1258 | | - |
1259 | | - return AsyncAggregateBalancesWithRawResponse(self._client.aggregate_balances) |
1260 | | - |
1261 | 1233 | @cached_property |
1262 | 1234 | def disputes(self) -> disputes.AsyncDisputesWithRawResponse: |
1263 | 1235 | from .resources.disputes import AsyncDisputesWithRawResponse |
@@ -1471,14 +1443,6 @@ def balances(self) -> balances.BalancesWithStreamingResponse: |
1471 | 1443 |
|
1472 | 1444 | return BalancesWithStreamingResponse(self._client.balances) |
1473 | 1445 |
|
1474 | | - @cached_property |
1475 | | - def aggregate_balances( |
1476 | | - self, |
1477 | | - ) -> aggregate_balances.AggregateBalancesWithStreamingResponse: |
1478 | | - from .resources.aggregate_balances import AggregateBalancesWithStreamingResponse |
1479 | | - |
1480 | | - return AggregateBalancesWithStreamingResponse(self._client.aggregate_balances) |
1481 | | - |
1482 | 1446 | @cached_property |
1483 | 1447 | def disputes(self) -> disputes.DisputesWithStreamingResponse: |
1484 | 1448 | from .resources.disputes import DisputesWithStreamingResponse |
@@ -1696,16 +1660,6 @@ def balances(self) -> balances.AsyncBalancesWithStreamingResponse: |
1696 | 1660 |
|
1697 | 1661 | return AsyncBalancesWithStreamingResponse(self._client.balances) |
1698 | 1662 |
|
1699 | | - @cached_property |
1700 | | - def aggregate_balances( |
1701 | | - self, |
1702 | | - ) -> aggregate_balances.AsyncAggregateBalancesWithStreamingResponse: |
1703 | | - from .resources.aggregate_balances import ( |
1704 | | - AsyncAggregateBalancesWithStreamingResponse, |
1705 | | - ) |
1706 | | - |
1707 | | - return AsyncAggregateBalancesWithStreamingResponse(self._client.aggregate_balances) |
1708 | | - |
1709 | 1663 | @cached_property |
1710 | 1664 | def disputes(self) -> disputes.AsyncDisputesWithStreamingResponse: |
1711 | 1665 | from .resources.disputes import AsyncDisputesWithStreamingResponse |
|
0 commit comments