Interface InteractionServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface InteractionServiceAsync.WithRawResponseA view of InteractionServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description abstract InteractionServiceAsync.WithRawResponsewithOptions(Consumer<ClientOptions.Builder> modifier)Returns a view of this service with the given option modifications applied. CompletableFuture<HttpResponseFor<InteractionAnalyzeResponse>>analyze(InteractionAnalyzeParams params)Returns a raw HTTP response for post /detection/v1/interactions, but is otherwise the same as InteractionServiceAsync.analyze.abstract CompletableFuture<HttpResponseFor<InteractionAnalyzeResponse>>analyze(InteractionAnalyzeParams params, RequestOptions requestOptions)-
-
Method Detail
-
withOptions
abstract InteractionServiceAsync.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
analyze
CompletableFuture<HttpResponseFor<InteractionAnalyzeResponse>> analyze(InteractionAnalyzeParams params)
Returns a raw HTTP response for
post /detection/v1/interactions, but is otherwise the same as InteractionServiceAsync.analyze.
-
analyze
abstract CompletableFuture<HttpResponseFor<InteractionAnalyzeResponse>> analyze(InteractionAnalyzeParams params, RequestOptions requestOptions)
-
-
-
-