-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add fields for 3DS authentication performed by a third party (#177)
Co-authored-by: Romero Silva <[email protected]> Co-authored-by: meliguilhermefernandes <[email protected]>
- Loading branch information
1 parent
e0932a0
commit 278d583
Showing
3 changed files
with
60 additions
and
0 deletions.
There are no files selected for viewing
50 changes: 50 additions & 0 deletions
50
src/MercadoPago/Client/Payment/PaymentAuthenticationRequest.cs
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,50 @@ | ||
using System; | ||
namespace MercadoPago.Client.Payment | ||
{ | ||
/// <summary> | ||
/// Data used to exchange 3DS authentication information verified by a third party. | ||
/// </summary> | ||
public class PaymentAuthenticationRequest | ||
{ | ||
/// <summary> | ||
/// Type. | ||
/// </summary> | ||
public string Type { get; set; } | ||
|
||
/// <summary> | ||
/// Cryptogram. | ||
/// </summary> | ||
public string Cryptogram { get; set; } | ||
|
||
/// <summary> | ||
/// 3DS Server Trans ID. | ||
/// </summary> | ||
public string ThreeDsServerTransId { get; set; } | ||
|
||
/// <summary> | ||
/// ECI. | ||
/// </summary> | ||
public string Eci { get; set; } | ||
|
||
/// <summary> | ||
/// 3DS Trans ID. | ||
/// </summary> | ||
public string DsTransId { get; set; } | ||
|
||
/// <summary> | ||
/// ACS Trans ID. | ||
/// </summary> | ||
public string AcsTransId { get; set; } | ||
|
||
/// <summary> | ||
/// 3DS Version. | ||
/// </summary> | ||
public string ThreeDsVersion { get; set; } | ||
|
||
/// <summary> | ||
/// Authentication Status. | ||
/// </summary> | ||
public string AuthenticationStatus { get; set; } | ||
} | ||
} | ||
|
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