Interface CardAuthenticationService.WithRawResponse
-
- All Implemented Interfaces:
public interface CardAuthenticationService.WithRawResponseA view of CardAuthenticationService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract CardAuthenticationService.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
create
@MustBeClosed() HttpResponseFor<CardPayment> create(CardAuthenticationCreateParams params)
Returns a raw HTTP response for
post /simulations/card_authentications, but is otherwise the same as CardAuthenticationService.create.
-
create
@MustBeClosed() abstract HttpResponseFor<CardPayment> create(CardAuthenticationCreateParams params, RequestOptions requestOptions)
-
challengeAttempts
@MustBeClosed() HttpResponseFor<CardPayment> challengeAttempts(String cardPaymentId, CardAuthenticationChallengeAttemptsParams params)
Returns a raw HTTP response for
post /simulations/card_authentications/{card_payment_id}/challenge_attempts, but is otherwise the same as CardAuthenticationService.challengeAttempts.
-
challengeAttempts
@MustBeClosed() HttpResponseFor<CardPayment> challengeAttempts(String cardPaymentId, CardAuthenticationChallengeAttemptsParams params, RequestOptions requestOptions)
-
challengeAttempts
@MustBeClosed() HttpResponseFor<CardPayment> challengeAttempts(CardAuthenticationChallengeAttemptsParams params)
-
challengeAttempts
@MustBeClosed() abstract HttpResponseFor<CardPayment> challengeAttempts(CardAuthenticationChallengeAttemptsParams params, RequestOptions requestOptions)
-
challenges
@MustBeClosed() HttpResponseFor<CardPayment> challenges(String cardPaymentId)
Returns a raw HTTP response for
post /simulations/card_authentications/{card_payment_id}/challenges, but is otherwise the same as CardAuthenticationService.challenges.
-
challenges
@MustBeClosed() HttpResponseFor<CardPayment> challenges(String cardPaymentId, CardAuthenticationChallengesParams params, RequestOptions requestOptions)
-
challenges
@MustBeClosed() HttpResponseFor<CardPayment> challenges(String cardPaymentId, CardAuthenticationChallengesParams params)
-
challenges
@MustBeClosed() abstract HttpResponseFor<CardPayment> challenges(CardAuthenticationChallengesParams params, RequestOptions requestOptions)
-
challenges
@MustBeClosed() HttpResponseFor<CardPayment> challenges(CardAuthenticationChallengesParams params)
-
challenges
@MustBeClosed() HttpResponseFor<CardPayment> challenges(String cardPaymentId, RequestOptions requestOptions)
-
-
-
-