Package so.prelude.sdk.services.blocking
Interface WatchService
-
- All Implemented Interfaces:
public interface WatchService
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description 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 abstract WatchService.WithRawResponse
withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method. abstract WatchService
withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied. WatchPredictResponse
predict(WatchPredictParams params)
Predict the outcome of a verification based on Prelude’s anti-fraud system. abstract WatchPredictResponse
predict(WatchPredictParams params, RequestOptions requestOptions)
WatchSendEventsResponse
sendEvents(WatchSendEventsParams params)
Send real-time event data from end-user interactions within your application. abstract WatchSendEventsResponse
sendEvents(WatchSendEventsParams params, RequestOptions requestOptions)
WatchSendFeedbacksResponse
sendFeedbacks(WatchSendFeedbacksParams params)
Send feedback regarding your end-users verification funnel. abstract WatchSendFeedbacksResponse
sendFeedbacks(WatchSendFeedbacksParams params, RequestOptions requestOptions)
-
-
Method Detail
-
withRawResponse
abstract WatchService.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
withOptions
abstract WatchService withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
predict
WatchPredictResponse predict(WatchPredictParams params)
Predict the outcome of a verification based on Prelude’s anti-fraud system.
-
predict
abstract WatchPredictResponse predict(WatchPredictParams params, RequestOptions requestOptions)
-
sendEvents
WatchSendEventsResponse sendEvents(WatchSendEventsParams params)
Send real-time event data from end-user interactions within your application. Events will be analyzed for proactive fraud prevention and risk scoring.
-
sendEvents
abstract WatchSendEventsResponse sendEvents(WatchSendEventsParams params, RequestOptions requestOptions)
-
sendFeedbacks
WatchSendFeedbacksResponse sendFeedbacks(WatchSendFeedbacksParams params)
Send feedback regarding your end-users verification funnel. Events will be analyzed for proactive fraud prevention and risk scoring.
-
sendFeedbacks
abstract WatchSendFeedbacksResponse sendFeedbacks(WatchSendFeedbacksParams params, RequestOptions requestOptions)
-
-
-
-