File tree Expand file tree Collapse file tree 4 files changed +49
-0
lines changed
Expand file tree Collapse file tree 4 files changed +49
-0
lines changed Original file line number Diff line number Diff line change @@ -79,5 +79,12 @@ public class ProcessingSettings
7979
8080 [ JsonProperty ( PropertyName = "senderInformation" ) ]
8181 public string SenderInformation { get ; set ; }
82+
83+ public CardType ? CardType { get ; set ; }
84+
85+ public string AffiliateId { get ; set ; }
86+
87+ public string AffiliateUrl { get ; set ; }
88+
8289 }
8390}
Original file line number Diff line number Diff line change 1+ using System . Runtime . Serialization ;
2+
3+ namespace Checkout . Payments . Request
4+ {
5+ public enum ItemSubType
6+ {
7+ [ EnumMember ( Value = "blockchain" ) ]
8+ Blockchain ,
9+
10+ [ EnumMember ( Value = "cbdc" ) ]
11+ Cbdc ,
12+
13+ [ EnumMember ( Value = "cryptocurrency" ) ]
14+ Cryptocurrency ,
15+
16+ [ EnumMember ( Value = "nft" ) ]
17+ Nft ,
18+
19+ [ EnumMember ( Value = "stablecoin" ) ]
20+ Stablecoin ,
21+
22+ }
23+ }
Original file line number Diff line number Diff line change 1+ using System . Runtime . Serialization ;
2+
3+ namespace Checkout . Payments . Request
4+ {
5+ public enum ItemType
6+ {
7+ [ EnumMember ( Value = "digital" ) ]
8+ Digital ,
9+
10+ [ EnumMember ( Value = "discount" ) ]
11+ Discount ,
12+
13+ [ EnumMember ( Value = "physical" ) ]
14+ Physical ,
15+ }
16+ }
Original file line number Diff line number Diff line change 22{
33 public class Product
44 {
5+ public ItemType Type { get ; set ; }
6+
7+ public ItemSubType SubType { get ; set ; }
58 public string Name { get ; set ; }
69
710 public long ? Quantity { get ; set ; }
You can’t perform that action at this time.
0 commit comments