Package com.increase.api.services.async
Interface CardServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface CardServiceAsync.WithRawResponseA view of CardServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
create
@MustBeClosed() CompletableFuture<HttpResponseFor<Card>> create(CardCreateParams params)
Returns a raw HTTP response for
post /cards, but is otherwise the same as CardServiceAsync.create.
-
create
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<Card>> create(CardCreateParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() CompletableFuture<HttpResponseFor<Card>> retrieve(CardRetrieveParams params)
Returns a raw HTTP response for
get /cards/{card_id}, but is otherwise the same as CardServiceAsync.retrieve.
-
retrieve
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<Card>> retrieve(CardRetrieveParams params, RequestOptions requestOptions)
-
update
@MustBeClosed() CompletableFuture<HttpResponseFor<Card>> update(CardUpdateParams params)
Returns a raw HTTP response for
patch /cards/{card_id}, but is otherwise the same as CardServiceAsync.update.
-
update
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<Card>> update(CardUpdateParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() CompletableFuture<HttpResponseFor<CardListPageAsync>> list()
Returns a raw HTTP response for
get /cards, but is otherwise the same as CardServiceAsync.list.
-
list
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<CardListPageAsync>> list(CardListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() CompletableFuture<HttpResponseFor<CardListPageAsync>> list(CardListParams params)
-
list
@MustBeClosed() CompletableFuture<HttpResponseFor<CardListPageAsync>> list(RequestOptions requestOptions)
-
details
@MustBeClosed() CompletableFuture<HttpResponseFor<CardDetails>> details(CardDetailsParams params)
Returns a raw HTTP response for
get /cards/{card_id}/details, but is otherwise the same as CardServiceAsync.details.
-
details
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<CardDetails>> details(CardDetailsParams params, RequestOptions requestOptions)
-
-
-
-