Package so.prelude.sdk.services.blocking
Interface WatchService.WithRawResponse
-
- All Implemented Interfaces:
public interface WatchService.WithRawResponse
A view of WatchService that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description HttpResponseFor<WatchPredictResponse>
predict(WatchPredictParams params)
Returns a raw HTTP response for post /v2/watch/predict
, but is otherwise the same as WatchService.predict.abstract HttpResponseFor<WatchPredictResponse>
predict(WatchPredictParams params, RequestOptions requestOptions)
HttpResponseFor<WatchSendEventsResponse>
sendEvents(WatchSendEventsParams params)
Returns a raw HTTP response for post /v2/watch/event
, but is otherwise the same as WatchService.sendEvents.abstract HttpResponseFor<WatchSendEventsResponse>
sendEvents(WatchSendEventsParams params, RequestOptions requestOptions)
HttpResponseFor<WatchSendFeedbacksResponse>
sendFeedbacks(WatchSendFeedbacksParams params)
Returns a raw HTTP response for post /v2/watch/feedback
, but is otherwise the same as WatchService.sendFeedbacks.abstract HttpResponseFor<WatchSendFeedbacksResponse>
sendFeedbacks(WatchSendFeedbacksParams params, RequestOptions requestOptions)
-
-
Method Detail
-
predict
@MustBeClosed() HttpResponseFor<WatchPredictResponse> predict(WatchPredictParams params)
Returns a raw HTTP response for
post /v2/watch/predict
, but is otherwise the same as WatchService.predict.
-
predict
@MustBeClosed() abstract HttpResponseFor<WatchPredictResponse> predict(WatchPredictParams params, RequestOptions requestOptions)
-
sendEvents
@MustBeClosed() HttpResponseFor<WatchSendEventsResponse> sendEvents(WatchSendEventsParams params)
Returns a raw HTTP response for
post /v2/watch/event
, but is otherwise the same as WatchService.sendEvents.
-
sendEvents
@MustBeClosed() abstract HttpResponseFor<WatchSendEventsResponse> sendEvents(WatchSendEventsParams params, RequestOptions requestOptions)
-
sendFeedbacks
@MustBeClosed() HttpResponseFor<WatchSendFeedbacksResponse> sendFeedbacks(WatchSendFeedbacksParams params)
Returns a raw HTTP response for
post /v2/watch/feedback
, but is otherwise the same as WatchService.sendFeedbacks.
-
sendFeedbacks
@MustBeClosed() abstract HttpResponseFor<WatchSendFeedbacksResponse> sendFeedbacks(WatchSendFeedbacksParams params, RequestOptions requestOptions)
-
-
-
-