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<WatchFeedBackResponse>
feedBack(WatchFeedBackParams params)
Returns a raw HTTP response for post /v2/watch/feedback
, but is otherwise the same as WatchService.feedBack.abstract HttpResponseFor<WatchFeedBackResponse>
feedBack(WatchFeedBackParams params, RequestOptions requestOptions)
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)
-
-
Method Detail
-
feedBack
@MustBeClosed() HttpResponseFor<WatchFeedBackResponse> feedBack(WatchFeedBackParams params)
Returns a raw HTTP response for
post /v2/watch/feedback
, but is otherwise the same as WatchService.feedBack.
-
feedBack
@MustBeClosed() abstract HttpResponseFor<WatchFeedBackResponse> feedBack(WatchFeedBackParams params, RequestOptions requestOptions)
-
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)
-
-
-
-