Package com.increase.api.services.async
Interface ProgramServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface ProgramServiceAsync.WithRawResponseA view of ProgramServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract ProgramServiceAsync.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<Program>> retrieve(String programId)
Returns a raw HTTP response for
get /programs/{program_id}, but is otherwise the same as ProgramServiceAsync.retrieve.
-
retrieve
CompletableFuture<HttpResponseFor<Program>> retrieve(String programId, ProgramRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<Program>> retrieve(String programId, ProgramRetrieveParams params)
-
retrieve
abstract CompletableFuture<HttpResponseFor<Program>> retrieve(ProgramRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<Program>> retrieve(ProgramRetrieveParams params)
-
retrieve
CompletableFuture<HttpResponseFor<Program>> retrieve(String programId, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<ProgramListPageAsync>> list()
Returns a raw HTTP response for
get /programs, but is otherwise the same as ProgramServiceAsync.list.
-
list
abstract CompletableFuture<HttpResponseFor<ProgramListPageAsync>> list(ProgramListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<ProgramListPageAsync>> list(ProgramListParams params)
-
list
CompletableFuture<HttpResponseFor<ProgramListPageAsync>> list(RequestOptions requestOptions)
-
-
-
-