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. CompletableFuture<WatchFeedBackResponse>
feedBack(WatchFeedBackParams params)
Once the user with a trustworthy phone number demonstrates authentic behavior, call this endpoint to report their authenticity to our systems. abstract CompletableFuture<WatchFeedBackResponse>
feedBack(WatchFeedBackParams params, RequestOptions requestOptions)
CompletableFuture<WatchPredictResponse>
predict(WatchPredictParams params)
Identify trustworthy phone numbers to mitigate fake traffic or traffic involved in fraud and international revenue share fraud (IRSF) patterns. abstract CompletableFuture<WatchPredictResponse>
predict(WatchPredictParams 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.
-
feedBack
CompletableFuture<WatchFeedBackResponse> feedBack(WatchFeedBackParams params)
Once the user with a trustworthy phone number demonstrates authentic behavior, call this endpoint to report their authenticity to our systems.
-
feedBack
abstract CompletableFuture<WatchFeedBackResponse> feedBack(WatchFeedBackParams params, RequestOptions requestOptions)
-
predict
CompletableFuture<WatchPredictResponse> predict(WatchPredictParams params)
Identify trustworthy phone numbers to mitigate fake traffic or traffic involved in fraud and international revenue share fraud (IRSF) patterns. This endpoint must be implemented in conjunction with the
watch/feedback
endpoint.
-
predict
abstract CompletableFuture<WatchPredictResponse> predict(WatchPredictParams params, RequestOptions requestOptions)
-
-
-
-