Interface RealTimeDecisionService.WithRawResponse
-
- All Implemented Interfaces:
public interface RealTimeDecisionService.WithRawResponseA view of RealTimeDecisionService that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description 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 RealTimeDecisionService.retrieve.abstract HttpResponseFor<RealTimeDecision>retrieve(RealTimeDecisionRetrieveParams params, RequestOptions requestOptions)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 RealTimeDecisionService.action.abstract HttpResponseFor<RealTimeDecision>action(RealTimeDecisionActionParams params, RequestOptions requestOptions)-
-
Method Detail
-
retrieve
@MustBeClosed() 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 RealTimeDecisionService.retrieve.
-
retrieve
@MustBeClosed() abstract HttpResponseFor<RealTimeDecision> retrieve(RealTimeDecisionRetrieveParams params, RequestOptions requestOptions)
-
action
@MustBeClosed() 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 RealTimeDecisionService.action.
-
action
@MustBeClosed() abstract HttpResponseFor<RealTimeDecision> action(RealTimeDecisionActionParams params, RequestOptions requestOptions)
-
-
-
-