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