Package com.increase.api.services.async
Interface CardPaymentServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface CardPaymentServiceAsync.WithRawResponseA view of CardPaymentServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract CardPaymentServiceAsync.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
retrieve
CompletableFuture<HttpResponseFor<CardPayment>> retrieve(String cardPaymentId)
Returns a raw HTTP response for
get /card_payments/{card_payment_id}, but is otherwise the same as CardPaymentServiceAsync.retrieve.
-
retrieve
CompletableFuture<HttpResponseFor<CardPayment>> retrieve(String cardPaymentId, CardPaymentRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<CardPayment>> retrieve(String cardPaymentId, CardPaymentRetrieveParams params)
-
retrieve
abstract CompletableFuture<HttpResponseFor<CardPayment>> retrieve(CardPaymentRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<CardPayment>> retrieve(CardPaymentRetrieveParams params)
-
retrieve
CompletableFuture<HttpResponseFor<CardPayment>> retrieve(String cardPaymentId, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<CardPaymentListPageAsync>> list()
Returns a raw HTTP response for
get /card_payments, but is otherwise the same as CardPaymentServiceAsync.list.
-
list
abstract CompletableFuture<HttpResponseFor<CardPaymentListPageAsync>> list(CardPaymentListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<CardPaymentListPageAsync>> list(CardPaymentListParams params)
-
list
CompletableFuture<HttpResponseFor<CardPaymentListPageAsync>> list(RequestOptions requestOptions)
-
-
-
-