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
-
retrieve
@MustBeClosed() CompletableFuture<HttpResponseFor<AuthenticationRetrieveResponse>> retrieve(ThreeDSAuthenticationRetrieveParams params)
Returns a raw HTTP response for
get /v1/three_ds_authentication/{three_ds_authentication_token}, but is otherwise the same as AuthenticationServiceAsync.retrieve.
-
retrieve
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<AuthenticationRetrieveResponse>> retrieve(ThreeDSAuthenticationRetrieveParams params, RequestOptions requestOptions)
-
simulate
@MustBeClosed() 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
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<AuthenticationSimulateResponse>> simulate(ThreeDSAuthenticationSimulateParams params, RequestOptions requestOptions)
-
simulateOtpEntry
@MustBeClosed() 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
@MustBeClosed() abstract CompletableFuture<HttpResponse> simulateOtpEntry(ThreeDSAuthenticationSimulateOtpEntryParams params, RequestOptions requestOptions)
-
-
-
-