Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add 3DS MPI Externo fields to Payment request #277

Merged
merged 3 commits into from
Jul 16, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
package com.mercadopago.client.payment;

import lombok.Builder;
import lombok.Getter;

/** PaymentAuthenticationRequest class. */
@Getter
@Builder
public class PaymentAuthenticationRequest {
/** Type. */
private final String type;

/** Cryptogram. */
private final String cryptogram;

/** 3DS Server Trans ID. */
private final String threeDsServerTransId;

/** ECI. */
private final String eci;

/** 3DS Trans ID. */
private final String dsTransId;

/** ACS Trans ID. */
private final String acsTransId;

/** 3DS Version. */
private final String threeDsVersion;

/** Authentication Status. */
private final String authenticationStatus;
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,7 @@ public class PaymentDataRequest {

/** Rules. */
private final PaymentRulesRequest rules;

/** Authentication. */
private final PaymentAuthenticationRequest authentication;
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
@Builder
public class PaymentMethodRequest {

/** Type. */
private final String type;

/** Data. */
private final PaymentDataRequest data;
}
Loading