Interface DecisioningService.WithRawResponse
-
- All Implemented Interfaces:
public interface DecisioningService.WithRawResponseA view of DecisioningService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract DecisioningService.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
challengeResponse
@MustBeClosed() HttpResponse challengeResponse(ThreeDSDecisioningChallengeResponseParams params)
Returns a raw HTTP response for
post /v1/three_ds_decisioning/challenge_response, but is otherwise the same as DecisioningService.challengeResponse.
-
challengeResponse
@MustBeClosed() abstract HttpResponse challengeResponse(ThreeDSDecisioningChallengeResponseParams params, RequestOptions requestOptions)
-
challengeResponse
@MustBeClosed() HttpResponse challengeResponse(ChallengeResponse challengeResponse, RequestOptions requestOptions)
-
challengeResponse
@MustBeClosed() HttpResponse challengeResponse(ChallengeResponse challengeResponse)
-
retrieveSecret
@MustBeClosed() HttpResponseFor<DecisioningRetrieveSecretResponse> retrieveSecret()
Returns a raw HTTP response for
get /v1/three_ds_decisioning/secret, but is otherwise the same as DecisioningService.retrieveSecret.
-
retrieveSecret
@MustBeClosed() abstract HttpResponseFor<DecisioningRetrieveSecretResponse> retrieveSecret(ThreeDSDecisioningRetrieveSecretParams params, RequestOptions requestOptions)
-
retrieveSecret
@MustBeClosed() HttpResponseFor<DecisioningRetrieveSecretResponse> retrieveSecret(ThreeDSDecisioningRetrieveSecretParams params)
-
retrieveSecret
@MustBeClosed() HttpResponseFor<DecisioningRetrieveSecretResponse> retrieveSecret(RequestOptions requestOptions)
-
rotateSecret
@MustBeClosed() HttpResponse rotateSecret()
Returns a raw HTTP response for
post /v1/three_ds_decisioning/secret/rotate, but is otherwise the same as DecisioningService.rotateSecret.
-
rotateSecret
@MustBeClosed() abstract HttpResponse rotateSecret(ThreeDSDecisioningRotateSecretParams params, RequestOptions requestOptions)
-
rotateSecret
@MustBeClosed() HttpResponse rotateSecret(ThreeDSDecisioningRotateSecretParams params)
-
rotateSecret
@MustBeClosed() HttpResponse rotateSecret(RequestOptions requestOptions)
-
-
-
-