Interface AuthenticationServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface AuthenticationServiceAsync.WithRawResponseA view of AuthenticationServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract AuthenticationServiceAsync.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
retrieve
CompletableFuture<HttpResponseFor<AuthenticationRetrieveResponse>> retrieve(String threeDSAuthenticationToken)
Returns a raw HTTP response for
get /v1/three_ds_authentication/{three_ds_authentication_token}, but is otherwise the same as AuthenticationServiceAsync.retrieve.
-
retrieve
CompletableFuture<HttpResponseFor<AuthenticationRetrieveResponse>> retrieve(String threeDSAuthenticationToken, ThreeDSAuthenticationRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<AuthenticationRetrieveResponse>> retrieve(String threeDSAuthenticationToken, ThreeDSAuthenticationRetrieveParams params)
-
retrieve
abstract CompletableFuture<HttpResponseFor<AuthenticationRetrieveResponse>> retrieve(ThreeDSAuthenticationRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<AuthenticationRetrieveResponse>> retrieve(ThreeDSAuthenticationRetrieveParams params)
-
retrieve
CompletableFuture<HttpResponseFor<AuthenticationRetrieveResponse>> retrieve(String threeDSAuthenticationToken, RequestOptions requestOptions)
-
simulate
CompletableFuture<HttpResponseFor<AuthenticationSimulateResponse>> simulate(ThreeDSAuthenticationSimulateParams params)
Returns a raw HTTP response for
post /v1/three_ds_authentication/simulate, but is otherwise the same as AuthenticationServiceAsync.simulate.
-
simulate
abstract CompletableFuture<HttpResponseFor<AuthenticationSimulateResponse>> simulate(ThreeDSAuthenticationSimulateParams params, RequestOptions requestOptions)
-
simulateOtpEntry
CompletableFuture<HttpResponse> simulateOtpEntry(ThreeDSAuthenticationSimulateOtpEntryParams params)
Returns a raw HTTP response for
post /v1/three_ds_decisioning/simulate/enter_otp, but is otherwise the same as AuthenticationServiceAsync.simulateOtpEntry.
-
simulateOtpEntry
abstract CompletableFuture<HttpResponse> simulateOtpEntry(ThreeDSAuthenticationSimulateOtpEntryParams params, RequestOptions requestOptions)
-
-
-
-