File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -5,17 +5,17 @@ public class PaymentContextsItems
55 public PaymentContextItemType ? Type { get ; set ; }
66 public string Name { get ; set ; }
77
8- public int Quantity { get ; set ; }
8+ public int ? Quantity { get ; set ; }
99
10- public int UnitPrice { get ; set ; }
10+ public int ? UnitPrice { get ; set ; }
1111
1212 public string Reference { get ; set ; }
1313
14- public int TotalAmount { get ; set ; }
14+ public int ? TotalAmount { get ; set ; }
1515
16- public int TaxAmount { get ; set ; }
16+ public int ? TaxAmount { get ; set ; }
1717
18- public int DiscountAmount { get ; set ; }
18+ public int ? DiscountAmount { get ; set ; }
1919
2020 public string Url { get ; set ; }
2121
Original file line number Diff line number Diff line change @@ -22,6 +22,6 @@ public class ShippingDetails
2222
2323 public PaymentContextsShippingMethod ? Method { get ; set ; }
2424
25- public int Delay { get ; set ; }
25+ public int ? Delay { get ; set ; }
2626 }
2727}
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ namespace Checkout.Reconciliation.Previous
44{
55 public class ReconciliationQueryPaymentsFilter
66 {
7- public int Limit { get ; set ; } = 500 ;
7+ public int ? Limit { get ; set ; } = 500 ;
88
99 public string Reference { get ; set ; }
1010
You can’t perform that action at this time.
0 commit comments