File tree Expand file tree Collapse file tree 5 files changed +31
-4
lines changed
src/CheckoutSdk/Metadata/Card Expand file tree Collapse file tree 5 files changed +31
-4
lines changed Original file line number Diff line number Diff line change 1+ namespace Checkout . Metadata . Card
2+ {
3+ public class AccountFundingTransaction
4+ {
5+ public AftIndicator AftIndicator { get ; set ; }
6+ }
7+ }
Original file line number Diff line number Diff line change 1+ namespace Checkout . Metadata . Card
2+ {
3+ public class AftIndicator
4+ {
5+ public PullFunds PullFunds { get ; set ; }
6+ }
7+ }
Original file line number Diff line number Diff line change @@ -40,5 +40,7 @@ public class CardMetadataResponse : HttpMetadata
4040 public CardMetadataPayouts CardPayouts { get ; set ; }
4141
4242 public SchemeMetadata SchemeMetadata { get ; set ; }
43+
44+ public AccountFundingTransaction AccountFundingTransaction { get ; set ; }
4345 }
4446}
Original file line number Diff line number Diff line change 1+ namespace Checkout . Metadata . Card
2+ {
3+ public class PullFunds
4+ {
5+ public bool ? CrossBorder { get ; set ; }
6+
7+ public bool ? Domestic { get ; set ; }
8+ }
9+ }
Original file line number Diff line number Diff line change 1+ using System . Collections . Generic ;
2+
13namespace Checkout . Metadata . Card
24{
35 public class SchemeMetadata
46 {
5- public PinlessDebitSchemeMetadata Accel { get ; set ; }
6- public PinlessDebitSchemeMetadata Pulse { get ; set ; }
7- public PinlessDebitSchemeMetadata Nyce { get ; set ; }
8- public PinlessDebitSchemeMetadata Star { get ; set ; }
7+ public IList < PinlessDebitSchemeMetadata > Accel { get ; set ; }
8+ public IList < PinlessDebitSchemeMetadata > Pulse { get ; set ; }
9+ public IList < PinlessDebitSchemeMetadata > Nyce { get ; set ; }
10+ public IList < PinlessDebitSchemeMetadata > Star { get ; set ; }
911 }
1012}
You can’t perform that action at this time.
0 commit comments