|
64 | 64 | fednow_transfers, |
65 | 65 | intrafi_balances, |
66 | 66 | account_transfers, |
| 67 | + beneficial_owners, |
67 | 68 | external_accounts, |
68 | 69 | oauth_connections, |
69 | 70 | account_statements, |
|
121 | 122 | from .resources.fednow_transfers import FednowTransfersResource, AsyncFednowTransfersResource |
122 | 123 | from .resources.intrafi_balances import IntrafiBalancesResource, AsyncIntrafiBalancesResource |
123 | 124 | from .resources.account_transfers import AccountTransfersResource, AsyncAccountTransfersResource |
| 125 | + from .resources.beneficial_owners import BeneficialOwnersResource, AsyncBeneficialOwnersResource |
124 | 126 | from .resources.external_accounts import ExternalAccountsResource, AsyncExternalAccountsResource |
125 | 127 | from .resources.oauth_connections import OAuthConnectionsResource, AsyncOAuthConnectionsResource |
126 | 128 | from .resources.account_statements import AccountStatementsResource, AsyncAccountStatementsResource |
@@ -478,6 +480,12 @@ def entities(self) -> EntitiesResource: |
478 | 480 |
|
479 | 481 | return EntitiesResource(self) |
480 | 482 |
|
| 483 | + @cached_property |
| 484 | + def beneficial_owners(self) -> BeneficialOwnersResource: |
| 485 | + from .resources.beneficial_owners import BeneficialOwnersResource |
| 486 | + |
| 487 | + return BeneficialOwnersResource(self) |
| 488 | + |
481 | 489 | @cached_property |
482 | 490 | def supplemental_documents(self) -> SupplementalDocumentsResource: |
483 | 491 | from .resources.supplemental_documents import SupplementalDocumentsResource |
@@ -1071,6 +1079,12 @@ def entities(self) -> AsyncEntitiesResource: |
1071 | 1079 |
|
1072 | 1080 | return AsyncEntitiesResource(self) |
1073 | 1081 |
|
| 1082 | + @cached_property |
| 1083 | + def beneficial_owners(self) -> AsyncBeneficialOwnersResource: |
| 1084 | + from .resources.beneficial_owners import AsyncBeneficialOwnersResource |
| 1085 | + |
| 1086 | + return AsyncBeneficialOwnersResource(self) |
| 1087 | + |
1074 | 1088 | @cached_property |
1075 | 1089 | def supplemental_documents(self) -> AsyncSupplementalDocumentsResource: |
1076 | 1090 | from .resources.supplemental_documents import AsyncSupplementalDocumentsResource |
@@ -1591,6 +1605,12 @@ def entities(self) -> entities.EntitiesResourceWithRawResponse: |
1591 | 1605 |
|
1592 | 1606 | return EntitiesResourceWithRawResponse(self._client.entities) |
1593 | 1607 |
|
| 1608 | + @cached_property |
| 1609 | + def beneficial_owners(self) -> beneficial_owners.BeneficialOwnersResourceWithRawResponse: |
| 1610 | + from .resources.beneficial_owners import BeneficialOwnersResourceWithRawResponse |
| 1611 | + |
| 1612 | + return BeneficialOwnersResourceWithRawResponse(self._client.beneficial_owners) |
| 1613 | + |
1594 | 1614 | @cached_property |
1595 | 1615 | def supplemental_documents(self) -> supplemental_documents.SupplementalDocumentsResourceWithRawResponse: |
1596 | 1616 | from .resources.supplemental_documents import SupplementalDocumentsResourceWithRawResponse |
@@ -1954,6 +1974,12 @@ def entities(self) -> entities.AsyncEntitiesResourceWithRawResponse: |
1954 | 1974 |
|
1955 | 1975 | return AsyncEntitiesResourceWithRawResponse(self._client.entities) |
1956 | 1976 |
|
| 1977 | + @cached_property |
| 1978 | + def beneficial_owners(self) -> beneficial_owners.AsyncBeneficialOwnersResourceWithRawResponse: |
| 1979 | + from .resources.beneficial_owners import AsyncBeneficialOwnersResourceWithRawResponse |
| 1980 | + |
| 1981 | + return AsyncBeneficialOwnersResourceWithRawResponse(self._client.beneficial_owners) |
| 1982 | + |
1957 | 1983 | @cached_property |
1958 | 1984 | def supplemental_documents(self) -> supplemental_documents.AsyncSupplementalDocumentsResourceWithRawResponse: |
1959 | 1985 | from .resources.supplemental_documents import AsyncSupplementalDocumentsResourceWithRawResponse |
@@ -2317,6 +2343,12 @@ def entities(self) -> entities.EntitiesResourceWithStreamingResponse: |
2317 | 2343 |
|
2318 | 2344 | return EntitiesResourceWithStreamingResponse(self._client.entities) |
2319 | 2345 |
|
| 2346 | + @cached_property |
| 2347 | + def beneficial_owners(self) -> beneficial_owners.BeneficialOwnersResourceWithStreamingResponse: |
| 2348 | + from .resources.beneficial_owners import BeneficialOwnersResourceWithStreamingResponse |
| 2349 | + |
| 2350 | + return BeneficialOwnersResourceWithStreamingResponse(self._client.beneficial_owners) |
| 2351 | + |
2320 | 2352 | @cached_property |
2321 | 2353 | def supplemental_documents(self) -> supplemental_documents.SupplementalDocumentsResourceWithStreamingResponse: |
2322 | 2354 | from .resources.supplemental_documents import SupplementalDocumentsResourceWithStreamingResponse |
@@ -2686,6 +2718,12 @@ def entities(self) -> entities.AsyncEntitiesResourceWithStreamingResponse: |
2686 | 2718 |
|
2687 | 2719 | return AsyncEntitiesResourceWithStreamingResponse(self._client.entities) |
2688 | 2720 |
|
| 2721 | + @cached_property |
| 2722 | + def beneficial_owners(self) -> beneficial_owners.AsyncBeneficialOwnersResourceWithStreamingResponse: |
| 2723 | + from .resources.beneficial_owners import AsyncBeneficialOwnersResourceWithStreamingResponse |
| 2724 | + |
| 2725 | + return AsyncBeneficialOwnersResourceWithStreamingResponse(self._client.beneficial_owners) |
| 2726 | + |
2689 | 2727 | @cached_property |
2690 | 2728 | def supplemental_documents(self) -> supplemental_documents.AsyncSupplementalDocumentsResourceWithStreamingResponse: |
2691 | 2729 | from .resources.supplemental_documents import AsyncSupplementalDocumentsResourceWithStreamingResponse |
|
0 commit comments