Package com.increase.api.services.async
Interface PhysicalCardServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface PhysicalCardServiceAsync.WithRawResponseA view of PhysicalCardServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
create
@MustBeClosed() CompletableFuture<HttpResponseFor<PhysicalCard>> create(PhysicalCardCreateParams params)
Returns a raw HTTP response for
post /physical_cards, but is otherwise the same as PhysicalCardServiceAsync.create.
-
create
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<PhysicalCard>> create(PhysicalCardCreateParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() CompletableFuture<HttpResponseFor<PhysicalCard>> retrieve(PhysicalCardRetrieveParams params)
Returns a raw HTTP response for
get /physical_cards/{physical_card_id}, but is otherwise the same as PhysicalCardServiceAsync.retrieve.
-
retrieve
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<PhysicalCard>> retrieve(PhysicalCardRetrieveParams params, RequestOptions requestOptions)
-
update
@MustBeClosed() CompletableFuture<HttpResponseFor<PhysicalCard>> update(PhysicalCardUpdateParams params)
Returns a raw HTTP response for
patch /physical_cards/{physical_card_id}, but is otherwise the same as PhysicalCardServiceAsync.update.
-
update
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<PhysicalCard>> update(PhysicalCardUpdateParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() CompletableFuture<HttpResponseFor<PhysicalCardListPageAsync>> list()
Returns a raw HTTP response for
get /physical_cards, but is otherwise the same as PhysicalCardServiceAsync.list.
-
list
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<PhysicalCardListPageAsync>> list(PhysicalCardListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() CompletableFuture<HttpResponseFor<PhysicalCardListPageAsync>> list(PhysicalCardListParams params)
-
list
@MustBeClosed() CompletableFuture<HttpResponseFor<PhysicalCardListPageAsync>> list(RequestOptions requestOptions)
-
-
-
-