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
Modifier and Type Method Description CompletableFuture<HttpResponseFor<Program>>retrieve(ProgramRetrieveParams params)Returns a raw HTTP response for get /programs/{program_id}, but is otherwise the same as ProgramServiceAsync.retrieve.abstract CompletableFuture<HttpResponseFor<Program>>retrieve(ProgramRetrieveParams params, RequestOptions requestOptions)CompletableFuture<HttpResponseFor<ProgramListPageAsync>>list()Returns a raw HTTP response for get /programs, but is otherwise the same as ProgramServiceAsync.list.abstract CompletableFuture<HttpResponseFor<ProgramListPageAsync>>list(ProgramListParams params, RequestOptions requestOptions)CompletableFuture<HttpResponseFor<ProgramListPageAsync>>list(ProgramListParams params)CompletableFuture<HttpResponseFor<ProgramListPageAsync>>list(RequestOptions requestOptions)-
-
Method Detail
-
retrieve
@MustBeClosed() CompletableFuture<HttpResponseFor<Program>> retrieve(ProgramRetrieveParams params)
Returns a raw HTTP response for
get /programs/{program_id}, but is otherwise the same as ProgramServiceAsync.retrieve.
-
retrieve
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<Program>> retrieve(ProgramRetrieveParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() CompletableFuture<HttpResponseFor<ProgramListPageAsync>> list()
Returns a raw HTTP response for
get /programs, but is otherwise the same as ProgramServiceAsync.list.
-
list
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<ProgramListPageAsync>> list(ProgramListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() CompletableFuture<HttpResponseFor<ProgramListPageAsync>> list(ProgramListParams params)
-
list
@MustBeClosed() CompletableFuture<HttpResponseFor<ProgramListPageAsync>> list(RequestOptions requestOptions)
-
-
-
-