-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add 3DS MPI Externo fields to Payment request (#277)
* Add 3DS MPI Externo fields to Payment request * bump version --------- Co-authored-by: Danielen Cestari Nunes <[email protected]>
- Loading branch information
1 parent
3a3905b
commit 4410bc7
Showing
6 changed files
with
42 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 33 additions & 0 deletions
33
src/main/java/com/mercadopago/client/payment/PaymentAuthenticationRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters