-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add type property to items in payment context. Payment Link Update. (#…
…431) * Add type property to items in payment context * Update card metadata response * Update payment link request and challenge indicator and exemption
- Loading branch information
1 parent
1430cfd
commit da32d63
Showing
10 changed files
with
59 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
namespace Checkout.Metadata.Card | ||
{ | ||
public class AccountFundingTransaction | ||
{ | ||
public AftIndicator AftIndicator { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
namespace Checkout.Metadata.Card | ||
{ | ||
public class AftIndicator | ||
{ | ||
public PullFunds PullFunds { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
namespace Checkout.Metadata.Card | ||
{ | ||
public class PullFunds | ||
{ | ||
public bool? CrossBorder { get; set; } | ||
|
||
public bool? Domestic { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
using System.Collections.Generic; | ||
|
||
namespace Checkout.Metadata.Card | ||
{ | ||
public class SchemeMetadata | ||
{ | ||
public PinlessDebitSchemeMetadata Accel { get; set; } | ||
public PinlessDebitSchemeMetadata Pulse { get; set; } | ||
public PinlessDebitSchemeMetadata Nyce { get; set; } | ||
public PinlessDebitSchemeMetadata Star { get; set; } | ||
public IList<PinlessDebitSchemeMetadata> Accel { get; set; } | ||
public IList<PinlessDebitSchemeMetadata> Pulse { get; set; } | ||
public IList<PinlessDebitSchemeMetadata> Nyce { get; set; } | ||
public IList<PinlessDebitSchemeMetadata> Star { get; set; } | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
src/CheckoutSdk/Payments/Contexts/PaymentContextItemType.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
using System.Runtime.Serialization; | ||
|
||
namespace Checkout.Payments.Contexts | ||
{ | ||
public enum PaymentContextItemType | ||
{ | ||
[EnumMember(Value = "physical")] | ||
Physical, | ||
|
||
[EnumMember(Value = "digital")] | ||
Digital, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters