Package com.lithic.api.services.async
Interface FinancialAccountServiceAsync
-
- All Implemented Interfaces:
public interface FinancialAccountServiceAsync
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceFinancialAccountServiceAsync.WithRawResponseA view of FinancialAccountServiceAsync that provides access to raw HTTP responses for each method.
-
Method Summary
-
-
Method Detail
-
withRawResponse
abstract FinancialAccountServiceAsync.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
withOptions
abstract FinancialAccountServiceAsync withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
balances
abstract BalanceServiceAsync balances()
-
financialTransactions
abstract FinancialTransactionServiceAsync financialTransactions()
-
creditConfiguration
abstract CreditConfigurationServiceAsync creditConfiguration()
-
statements
abstract StatementServiceAsync statements()
-
loanTapes
abstract LoanTapeServiceAsync loanTapes()
-
create
CompletableFuture<FinancialAccount> create(FinancialAccountCreateParams params)
Create a new financial account
-
create
abstract CompletableFuture<FinancialAccount> create(FinancialAccountCreateParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<FinancialAccount> retrieve(String financialAccountToken)
Get a financial account
-
retrieve
CompletableFuture<FinancialAccount> retrieve(String financialAccountToken, FinancialAccountRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<FinancialAccount> retrieve(String financialAccountToken, FinancialAccountRetrieveParams params)
-
retrieve
abstract CompletableFuture<FinancialAccount> retrieve(FinancialAccountRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<FinancialAccount> retrieve(FinancialAccountRetrieveParams params)
-
retrieve
CompletableFuture<FinancialAccount> retrieve(String financialAccountToken, RequestOptions requestOptions)
-
update
CompletableFuture<FinancialAccount> update(String financialAccountToken)
Update a financial account
-
update
CompletableFuture<FinancialAccount> update(String financialAccountToken, FinancialAccountUpdateParams params, RequestOptions requestOptions)
-
update
CompletableFuture<FinancialAccount> update(String financialAccountToken, FinancialAccountUpdateParams params)
-
update
abstract CompletableFuture<FinancialAccount> update(FinancialAccountUpdateParams params, RequestOptions requestOptions)
-
update
CompletableFuture<FinancialAccount> update(FinancialAccountUpdateParams params)
-
update
CompletableFuture<FinancialAccount> update(String financialAccountToken, RequestOptions requestOptions)
-
list
CompletableFuture<FinancialAccountListPageAsync> list()
Retrieve information on your financial accounts including routing and account number.
-
list
abstract CompletableFuture<FinancialAccountListPageAsync> list(FinancialAccountListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<FinancialAccountListPageAsync> list(RequestOptions requestOptions)
-
registerAccountNumber
CompletableFuture<Void> registerAccountNumber(String financialAccountToken, FinancialAccountRegisterAccountNumberParams params)
Register account number
-
registerAccountNumber
CompletableFuture<Void> registerAccountNumber(String financialAccountToken, FinancialAccountRegisterAccountNumberParams params, RequestOptions requestOptions)
-
registerAccountNumber
CompletableFuture<Void> registerAccountNumber(FinancialAccountRegisterAccountNumberParams params)
-
registerAccountNumber
abstract CompletableFuture<Void> registerAccountNumber(FinancialAccountRegisterAccountNumberParams params, RequestOptions requestOptions)
-
updateStatus
CompletableFuture<FinancialAccount> updateStatus(String financialAccountToken, FinancialAccountUpdateStatusParams params)
Update financial account status
-
updateStatus
CompletableFuture<FinancialAccount> updateStatus(String financialAccountToken, FinancialAccountUpdateStatusParams params, RequestOptions requestOptions)
-
updateStatus
CompletableFuture<FinancialAccount> updateStatus(FinancialAccountUpdateStatusParams params)
-
updateStatus
abstract CompletableFuture<FinancialAccount> updateStatus(FinancialAccountUpdateStatusParams params, RequestOptions requestOptions)
-
-
-
-