Package com.lithic.api.services.async
Interface HoldServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface HoldServiceAsync.WithRawResponseA view of HoldServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract HoldServiceAsync.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<Hold>> create(String financialAccountToken, HoldCreateParams params)
Returns a raw HTTP response for
post /v1/financial_accounts/{financial_account_token}/holds, but is otherwise the same as HoldServiceAsync.create.
-
create
CompletableFuture<HttpResponseFor<Hold>> create(String financialAccountToken, HoldCreateParams params, RequestOptions requestOptions)
-
create
CompletableFuture<HttpResponseFor<Hold>> create(HoldCreateParams params)
-
create
abstract CompletableFuture<HttpResponseFor<Hold>> create(HoldCreateParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<Hold>> retrieve(String holdToken)
Returns a raw HTTP response for
get /v1/holds/{hold_token}, but is otherwise the same as HoldServiceAsync.retrieve.
-
retrieve
CompletableFuture<HttpResponseFor<Hold>> retrieve(String holdToken, HoldRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<Hold>> retrieve(String holdToken, HoldRetrieveParams params)
-
retrieve
abstract CompletableFuture<HttpResponseFor<Hold>> retrieve(HoldRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<Hold>> retrieve(HoldRetrieveParams params)
-
retrieve
CompletableFuture<HttpResponseFor<Hold>> retrieve(String holdToken, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<HoldListPageAsync>> list(String financialAccountToken)
Returns a raw HTTP response for
get /v1/financial_accounts/{financial_account_token}/holds, but is otherwise the same as HoldServiceAsync.list.
-
list
CompletableFuture<HttpResponseFor<HoldListPageAsync>> list(String financialAccountToken, HoldListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<HoldListPageAsync>> list(String financialAccountToken, HoldListParams params)
-
list
abstract CompletableFuture<HttpResponseFor<HoldListPageAsync>> list(HoldListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<HoldListPageAsync>> list(HoldListParams params)
-
list
CompletableFuture<HttpResponseFor<HoldListPageAsync>> list(String financialAccountToken, RequestOptions requestOptions)
-
void_
CompletableFuture<HttpResponseFor<Hold>> void_(String holdToken)
Returns a raw HTTP response for
post /v1/holds/{hold_token}/void, but is otherwise the same as HoldServiceAsync.void_.
-
void_
CompletableFuture<HttpResponseFor<Hold>> void_(String holdToken, HoldVoidParams params, RequestOptions requestOptions)
-
void_
CompletableFuture<HttpResponseFor<Hold>> void_(String holdToken, HoldVoidParams params)
-
void_
abstract CompletableFuture<HttpResponseFor<Hold>> void_(HoldVoidParams params, RequestOptions requestOptions)
-
void_
CompletableFuture<HttpResponseFor<Hold>> void_(HoldVoidParams params)
-
void_
CompletableFuture<HttpResponseFor<Hold>> void_(String holdToken, RequestOptions requestOptions)
-
-
-
-