We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d509b8 commit b12a3b4Copy full SHA for b12a3b4
src/CheckoutSdk/Sessions/CreateSessionAcceptedResponse.cs
@@ -53,5 +53,11 @@ public class CreateSessionAcceptedResponse : Resource
53
public ChallengeIndicatorType? ChallengeIndicator { get; set; }
54
55
public Optimization Optimization { get; set; }
56
+
57
+ public Ds Ds { get; set; }
58
59
+ public DsPublicKeys Certificates { get; set; }
60
61
+ public TransactionType? TransactionType { get; set; }
62
}
63
src/CheckoutSdk/Sessions/DsPublicKeys.cs
@@ -1,9 +1,13 @@
1
-namespace Checkout.Sessions
+using System.Collections.Generic;
2
3
+namespace Checkout.Sessions
4
{
5
public class DsPublicKeys
6
7
public string DsPublic { get; set; }
8
9
public string CaPublic { get; set; }
10
11
+ public IList<object> CaPublicAll { get; set; }
12
13
0 commit comments