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
-
withOptions
abstract PhysicalCardServiceAsync.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<PhysicalCard>> create(PhysicalCardCreateParams params)
Returns a raw HTTP response for
post /physical_cards, but is otherwise the same as PhysicalCardServiceAsync.create.
-
create
abstract CompletableFuture<HttpResponseFor<PhysicalCard>> create(PhysicalCardCreateParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<PhysicalCard>> retrieve(String physicalCardId)
Returns a raw HTTP response for
get /physical_cards/{physical_card_id}, but is otherwise the same as PhysicalCardServiceAsync.retrieve.
-
retrieve
CompletableFuture<HttpResponseFor<PhysicalCard>> retrieve(String physicalCardId, PhysicalCardRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<PhysicalCard>> retrieve(String physicalCardId, PhysicalCardRetrieveParams params)
-
retrieve
abstract CompletableFuture<HttpResponseFor<PhysicalCard>> retrieve(PhysicalCardRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<PhysicalCard>> retrieve(PhysicalCardRetrieveParams params)
-
retrieve
CompletableFuture<HttpResponseFor<PhysicalCard>> retrieve(String physicalCardId, RequestOptions requestOptions)
-
update
CompletableFuture<HttpResponseFor<PhysicalCard>> update(String physicalCardId, PhysicalCardUpdateParams params)
Returns a raw HTTP response for
patch /physical_cards/{physical_card_id}, but is otherwise the same as PhysicalCardServiceAsync.update.
-
update
CompletableFuture<HttpResponseFor<PhysicalCard>> update(String physicalCardId, PhysicalCardUpdateParams params, RequestOptions requestOptions)
-
update
CompletableFuture<HttpResponseFor<PhysicalCard>> update(PhysicalCardUpdateParams params)
-
update
abstract CompletableFuture<HttpResponseFor<PhysicalCard>> update(PhysicalCardUpdateParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<PhysicalCardListPageAsync>> list()
Returns a raw HTTP response for
get /physical_cards, but is otherwise the same as PhysicalCardServiceAsync.list.
-
list
abstract CompletableFuture<HttpResponseFor<PhysicalCardListPageAsync>> list(PhysicalCardListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<PhysicalCardListPageAsync>> list(PhysicalCardListParams params)
-
list
CompletableFuture<HttpResponseFor<PhysicalCardListPageAsync>> list(RequestOptions requestOptions)
-
-
-
-