Package com.lithic.api.services.async
Interface CardProgramServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface CardProgramServiceAsync.WithRawResponseA view of CardProgramServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract CardProgramServiceAsync.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<CardProgram>> retrieve(String cardProgramToken)
Returns a raw HTTP response for
get /v1/card_programs/{card_program_token}, but is otherwise the same as CardProgramServiceAsync.retrieve.
-
retrieve
CompletableFuture<HttpResponseFor<CardProgram>> retrieve(String cardProgramToken, CardProgramRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<CardProgram>> retrieve(String cardProgramToken, CardProgramRetrieveParams params)
-
retrieve
abstract CompletableFuture<HttpResponseFor<CardProgram>> retrieve(CardProgramRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<CardProgram>> retrieve(CardProgramRetrieveParams params)
-
retrieve
CompletableFuture<HttpResponseFor<CardProgram>> retrieve(String cardProgramToken, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<CardProgramListPageAsync>> list()
Returns a raw HTTP response for
get /v1/card_programs, but is otherwise the same as CardProgramServiceAsync.list.
-
list
abstract CompletableFuture<HttpResponseFor<CardProgramListPageAsync>> list(CardProgramListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<CardProgramListPageAsync>> list(CardProgramListParams params)
-
list
CompletableFuture<HttpResponseFor<CardProgramListPageAsync>> list(RequestOptions requestOptions)
-
-
-
-