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
-
-
Method Detail
-
withOptions
abstract WatchService.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
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)
-
-
-
-