Interface AuthenticationService.WithRawResponse
-
- All Implemented Interfaces:
public interface AuthenticationService.WithRawResponseA view of AuthenticationService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract AuthenticationService.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
@MustBeClosed() 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 AuthenticationService.retrieve.
-
retrieve
@MustBeClosed() HttpResponseFor<AuthenticationRetrieveResponse> retrieve(String threeDSAuthenticationToken, ThreeDSAuthenticationRetrieveParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<AuthenticationRetrieveResponse> retrieve(String threeDSAuthenticationToken, ThreeDSAuthenticationRetrieveParams params)
-
retrieve
@MustBeClosed() abstract HttpResponseFor<AuthenticationRetrieveResponse> retrieve(ThreeDSAuthenticationRetrieveParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<AuthenticationRetrieveResponse> retrieve(ThreeDSAuthenticationRetrieveParams params)
-
retrieve
@MustBeClosed() HttpResponseFor<AuthenticationRetrieveResponse> retrieve(String threeDSAuthenticationToken, RequestOptions requestOptions)
-
simulate
@MustBeClosed() HttpResponseFor<AuthenticationSimulateResponse> simulate(ThreeDSAuthenticationSimulateParams params)
Returns a raw HTTP response for
post /v1/three_ds_authentication/simulate, but is otherwise the same as AuthenticationService.simulate.
-
simulate
@MustBeClosed() abstract HttpResponseFor<AuthenticationSimulateResponse> simulate(ThreeDSAuthenticationSimulateParams params, RequestOptions requestOptions)
-
simulateOtpEntry
@MustBeClosed() HttpResponse simulateOtpEntry(ThreeDSAuthenticationSimulateOtpEntryParams params)
Returns a raw HTTP response for
post /v1/three_ds_decisioning/simulate/enter_otp, but is otherwise the same as AuthenticationService.simulateOtpEntry.
-
simulateOtpEntry
@MustBeClosed() abstract HttpResponse simulateOtpEntry(ThreeDSAuthenticationSimulateOtpEntryParams params, RequestOptions requestOptions)
-
-
-
-