Package com.increase.api.services.async
Interface ExternalAccountServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface ExternalAccountServiceAsync.WithRawResponseA view of ExternalAccountServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract ExternalAccountServiceAsync.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
create
CompletableFuture<HttpResponseFor<ExternalAccount>> create(ExternalAccountCreateParams params)
Returns a raw HTTP response for
post /external_accounts, but is otherwise the same as ExternalAccountServiceAsync.create.
-
create
abstract CompletableFuture<HttpResponseFor<ExternalAccount>> create(ExternalAccountCreateParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<ExternalAccount>> retrieve(String externalAccountId)
Returns a raw HTTP response for
get /external_accounts/{external_account_id}, but is otherwise the same as ExternalAccountServiceAsync.retrieve.
-
retrieve
CompletableFuture<HttpResponseFor<ExternalAccount>> retrieve(String externalAccountId, ExternalAccountRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<ExternalAccount>> retrieve(String externalAccountId, ExternalAccountRetrieveParams params)
-
retrieve
abstract CompletableFuture<HttpResponseFor<ExternalAccount>> retrieve(ExternalAccountRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<ExternalAccount>> retrieve(ExternalAccountRetrieveParams params)
-
retrieve
CompletableFuture<HttpResponseFor<ExternalAccount>> retrieve(String externalAccountId, RequestOptions requestOptions)
-
update
CompletableFuture<HttpResponseFor<ExternalAccount>> update(String externalAccountId)
Returns a raw HTTP response for
patch /external_accounts/{external_account_id}, but is otherwise the same as ExternalAccountServiceAsync.update.
-
update
CompletableFuture<HttpResponseFor<ExternalAccount>> update(String externalAccountId, ExternalAccountUpdateParams params, RequestOptions requestOptions)
-
update
CompletableFuture<HttpResponseFor<ExternalAccount>> update(String externalAccountId, ExternalAccountUpdateParams params)
-
update
abstract CompletableFuture<HttpResponseFor<ExternalAccount>> update(ExternalAccountUpdateParams params, RequestOptions requestOptions)
-
update
CompletableFuture<HttpResponseFor<ExternalAccount>> update(ExternalAccountUpdateParams params)
-
update
CompletableFuture<HttpResponseFor<ExternalAccount>> update(String externalAccountId, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<ExternalAccountListPageAsync>> list()
Returns a raw HTTP response for
get /external_accounts, but is otherwise the same as ExternalAccountServiceAsync.list.
-
list
abstract CompletableFuture<HttpResponseFor<ExternalAccountListPageAsync>> list(ExternalAccountListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<ExternalAccountListPageAsync>> list(ExternalAccountListParams params)
-
list
CompletableFuture<HttpResponseFor<ExternalAccountListPageAsync>> list(RequestOptions requestOptions)
-
-
-
-