6262 FinancialTransactionsWithStreamingResponse ,
6363 AsyncFinancialTransactionsWithStreamingResponse ,
6464)
65+ from .interest_tier_schedule import (
66+ InterestTierScheduleResource ,
67+ AsyncInterestTierScheduleResource ,
68+ InterestTierScheduleResourceWithRawResponse ,
69+ AsyncInterestTierScheduleResourceWithRawResponse ,
70+ InterestTierScheduleResourceWithStreamingResponse ,
71+ AsyncInterestTierScheduleResourceWithStreamingResponse ,
72+ )
73+ from .loan_tape_configuration import (
74+ LoanTapeConfigurationResource ,
75+ AsyncLoanTapeConfigurationResource ,
76+ LoanTapeConfigurationResourceWithRawResponse ,
77+ AsyncLoanTapeConfigurationResourceWithRawResponse ,
78+ LoanTapeConfigurationResourceWithStreamingResponse ,
79+ AsyncLoanTapeConfigurationResourceWithStreamingResponse ,
80+ )
6581from ...types .financial_account import FinancialAccount
6682
6783__all__ = ["FinancialAccounts" , "AsyncFinancialAccounts" ]
@@ -88,6 +104,14 @@ def statements(self) -> Statements:
88104 def loan_tapes (self ) -> LoanTapes :
89105 return LoanTapes (self ._client )
90106
107+ @cached_property
108+ def loan_tape_configuration (self ) -> LoanTapeConfigurationResource :
109+ return LoanTapeConfigurationResource (self ._client )
110+
111+ @cached_property
112+ def interest_tier_schedule (self ) -> InterestTierScheduleResource :
113+ return InterestTierScheduleResource (self ._client )
114+
91115 @cached_property
92116 def with_raw_response (self ) -> FinancialAccountsWithRawResponse :
93117 """
@@ -396,6 +420,14 @@ def statements(self) -> AsyncStatements:
396420 def loan_tapes (self ) -> AsyncLoanTapes :
397421 return AsyncLoanTapes (self ._client )
398422
423+ @cached_property
424+ def loan_tape_configuration (self ) -> AsyncLoanTapeConfigurationResource :
425+ return AsyncLoanTapeConfigurationResource (self ._client )
426+
427+ @cached_property
428+ def interest_tier_schedule (self ) -> AsyncInterestTierScheduleResource :
429+ return AsyncInterestTierScheduleResource (self ._client )
430+
399431 @cached_property
400432 def with_raw_response (self ) -> AsyncFinancialAccountsWithRawResponse :
401433 """
@@ -728,6 +760,14 @@ def statements(self) -> StatementsWithRawResponse:
728760 def loan_tapes (self ) -> LoanTapesWithRawResponse :
729761 return LoanTapesWithRawResponse (self ._financial_accounts .loan_tapes )
730762
763+ @cached_property
764+ def loan_tape_configuration (self ) -> LoanTapeConfigurationResourceWithRawResponse :
765+ return LoanTapeConfigurationResourceWithRawResponse (self ._financial_accounts .loan_tape_configuration )
766+
767+ @cached_property
768+ def interest_tier_schedule (self ) -> InterestTierScheduleResourceWithRawResponse :
769+ return InterestTierScheduleResourceWithRawResponse (self ._financial_accounts .interest_tier_schedule )
770+
731771
732772class AsyncFinancialAccountsWithRawResponse :
733773 def __init__ (self , financial_accounts : AsyncFinancialAccounts ) -> None :
@@ -772,6 +812,14 @@ def statements(self) -> AsyncStatementsWithRawResponse:
772812 def loan_tapes (self ) -> AsyncLoanTapesWithRawResponse :
773813 return AsyncLoanTapesWithRawResponse (self ._financial_accounts .loan_tapes )
774814
815+ @cached_property
816+ def loan_tape_configuration (self ) -> AsyncLoanTapeConfigurationResourceWithRawResponse :
817+ return AsyncLoanTapeConfigurationResourceWithRawResponse (self ._financial_accounts .loan_tape_configuration )
818+
819+ @cached_property
820+ def interest_tier_schedule (self ) -> AsyncInterestTierScheduleResourceWithRawResponse :
821+ return AsyncInterestTierScheduleResourceWithRawResponse (self ._financial_accounts .interest_tier_schedule )
822+
775823
776824class FinancialAccountsWithStreamingResponse :
777825 def __init__ (self , financial_accounts : FinancialAccounts ) -> None :
@@ -816,6 +864,14 @@ def statements(self) -> StatementsWithStreamingResponse:
816864 def loan_tapes (self ) -> LoanTapesWithStreamingResponse :
817865 return LoanTapesWithStreamingResponse (self ._financial_accounts .loan_tapes )
818866
867+ @cached_property
868+ def loan_tape_configuration (self ) -> LoanTapeConfigurationResourceWithStreamingResponse :
869+ return LoanTapeConfigurationResourceWithStreamingResponse (self ._financial_accounts .loan_tape_configuration )
870+
871+ @cached_property
872+ def interest_tier_schedule (self ) -> InterestTierScheduleResourceWithStreamingResponse :
873+ return InterestTierScheduleResourceWithStreamingResponse (self ._financial_accounts .interest_tier_schedule )
874+
819875
820876class AsyncFinancialAccountsWithStreamingResponse :
821877 def __init__ (self , financial_accounts : AsyncFinancialAccounts ) -> None :
@@ -859,3 +915,11 @@ def statements(self) -> AsyncStatementsWithStreamingResponse:
859915 @cached_property
860916 def loan_tapes (self ) -> AsyncLoanTapesWithStreamingResponse :
861917 return AsyncLoanTapesWithStreamingResponse (self ._financial_accounts .loan_tapes )
918+
919+ @cached_property
920+ def loan_tape_configuration (self ) -> AsyncLoanTapeConfigurationResourceWithStreamingResponse :
921+ return AsyncLoanTapeConfigurationResourceWithStreamingResponse (self ._financial_accounts .loan_tape_configuration )
922+
923+ @cached_property
924+ def interest_tier_schedule (self ) -> AsyncInterestTierScheduleResourceWithStreamingResponse :
925+ return AsyncInterestTierScheduleResourceWithStreamingResponse (self ._financial_accounts .interest_tier_schedule )
0 commit comments