Skip to content

Commit 5c272ea

Browse files
Update Payment Method Configuration Applepay and Googlepay
1 parent 4ecf0ce commit 5c272ea

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
namespace Checkout.Payments.Sessions
2+
{
3+
public class Applepay
4+
{
5+
public StorePaymentDetailsType? StorePaymentDetails { get; set; }
6+
}
7+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
namespace Checkout.Payments.Sessions
2+
{
3+
public class Googlepay
4+
{
5+
public StorePaymentDetailsType? StorePaymentDetails { get; set; }
6+
}
7+
}
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
using Checkout.Common;
2-
31
namespace Checkout.Payments.Sessions
42
{
53
public class PaymentMethodConfiguration
64
{
7-
public Card card { get; set; }
5+
public Applepay Applepay { get; set; }
6+
public Card Card { get; set; }
7+
public Googlepay Googlepay { get; set; }
88
}
99
}

0 commit comments

Comments
 (0)