-
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.
- Loading branch information
1 parent
38b3f10
commit 82afcb9
Showing
17 changed files
with
229 additions
and
26 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
21 changes: 21 additions & 0 deletions
21
src/CheckoutSdk/Payments/Request/Source/Apm/RequestAchSource.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,21 @@ | ||
using Checkout.Common; | ||
|
||
namespace Checkout.Payments.Request.Source.Apm | ||
{ | ||
public class RequestAchSource : AbstractRequestSource | ||
{ | ||
public AccountType? AccountType { get; set; } | ||
|
||
public CountryCode? Country { get; set; } | ||
|
||
public string AccountNumber { get; set; } | ||
|
||
public string BankCode { get; set; } | ||
|
||
public AccountHolder AccountHolder { get; set; } | ||
|
||
public RequestAchSource() : base(PaymentSourceType.Ach) | ||
{ | ||
} | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
src/CheckoutSdk/Payments/Request/Source/Apm/RequestBizumSource.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 Checkout.Common; | ||
|
||
namespace Checkout.Payments.Request.Source.Apm | ||
{ | ||
public class RequestBizumSource : AbstractRequestSource | ||
{ | ||
public string MobileNumber { get; set; } | ||
|
||
public RequestBizumSource() : base(PaymentSourceType.Bizum) | ||
{ | ||
} | ||
} | ||
} |
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
11 changes: 11 additions & 0 deletions
11
src/CheckoutSdk/Payments/Request/Source/Apm/RequestOctopusSource.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,11 @@ | ||
using Checkout.Common; | ||
|
||
namespace Checkout.Payments.Request.Source.Apm | ||
{ | ||
public class RequestOctopusSource : AbstractRequestSource | ||
{ | ||
public RequestOctopusSource() : base(PaymentSourceType.Octopus) | ||
{ | ||
} | ||
} | ||
} |
15 changes: 15 additions & 0 deletions
15
src/CheckoutSdk/Payments/Request/Source/Apm/RequestPlaidSource.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,15 @@ | ||
using Checkout.Common; | ||
|
||
namespace Checkout.Payments.Request.Source.Apm | ||
{ | ||
public class RequestPlaidSource : AbstractRequestSource | ||
{ | ||
public string Token { get; set; } | ||
|
||
public AccountHolder AccountHolder { get; set; } | ||
|
||
public RequestPlaidSource() : base(PaymentSourceType.Plaid) | ||
{ | ||
} | ||
} | ||
} |
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
13 changes: 13 additions & 0 deletions
13
src/CheckoutSdk/Payments/Request/Source/Apm/RequestSequraSource.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 Checkout.Common; | ||
|
||
namespace Checkout.Payments.Request.Source.Apm | ||
{ | ||
public class RequestSequraSource : AbstractRequestSource | ||
{ | ||
public RequestSequraSource() : base(PaymentSourceType.Sequra) | ||
{ | ||
} | ||
|
||
public Address BillingAddress { 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
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
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
Oops, something went wrong.