Package com.increase.api.services.async
Interface RealTimeDecisionServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface RealTimeDecisionServiceAsync.WithRawResponseA view of RealTimeDecisionServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description CompletableFuture<HttpResponseFor<RealTimeDecision>>retrieve(RealTimeDecisionRetrieveParams params)Returns a raw HTTP response for get /real_time_decisions/{real_time_decision_id}, but is otherwise the same as RealTimeDecisionServiceAsync.retrieve.abstract CompletableFuture<HttpResponseFor<RealTimeDecision>>retrieve(RealTimeDecisionRetrieveParams params, RequestOptions requestOptions)CompletableFuture<HttpResponseFor<RealTimeDecision>>action(RealTimeDecisionActionParams params)Returns a raw HTTP response for post /real_time_decisions/{real_time_decision_id}/action, but is otherwise the same as RealTimeDecisionServiceAsync.action.abstract CompletableFuture<HttpResponseFor<RealTimeDecision>>action(RealTimeDecisionActionParams params, RequestOptions requestOptions)-
-
Method Detail
-
retrieve
@MustBeClosed() CompletableFuture<HttpResponseFor<RealTimeDecision>> retrieve(RealTimeDecisionRetrieveParams params)
Returns a raw HTTP response for
get /real_time_decisions/{real_time_decision_id}, but is otherwise the same as RealTimeDecisionServiceAsync.retrieve.
-
retrieve
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<RealTimeDecision>> retrieve(RealTimeDecisionRetrieveParams params, RequestOptions requestOptions)
-
action
@MustBeClosed() CompletableFuture<HttpResponseFor<RealTimeDecision>> action(RealTimeDecisionActionParams params)
Returns a raw HTTP response for
post /real_time_decisions/{real_time_decision_id}/action, but is otherwise the same as RealTimeDecisionServiceAsync.action.
-
action
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<RealTimeDecision>> action(RealTimeDecisionActionParams params, RequestOptions requestOptions)
-
-
-
-