-
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
fb777d7
commit 0adaffd
Showing
24 changed files
with
217 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
namespace Checkout.Accounts | ||
using Checkout.Common; | ||
|
||
namespace Checkout.Accounts | ||
{ | ||
public class AccountPhone | ||
{ | ||
public CountryCode? CountryCode { get; set; } | ||
public string Number { 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.Accounts | ||
{ | ||
public class AdditionalDocument | ||
{ | ||
public string Front { 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,11 @@ | ||
namespace Checkout.Accounts | ||
{ | ||
public class AdditionalInfo | ||
{ | ||
public string Field1 { get; set; } | ||
|
||
public string Field2 { get; set; } | ||
|
||
public string Field3 { 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,13 @@ | ||
using System.Runtime.Serialization; | ||
|
||
namespace Checkout.Accounts | ||
{ | ||
public enum ArticlesOfAssociationType | ||
{ | ||
[EnumMember(Value = "memorandum_of_association")] | ||
MemorandumOfAssociation, | ||
|
||
[EnumMember(Value = "articles_of_association")] | ||
ArticlesOfAssociation | ||
} | ||
} |
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.Accounts | ||
{ | ||
public class BankVerification | ||
{ | ||
public BankVerificationType? Type { get; set; } | ||
|
||
public string Front { 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,9 @@ | ||
using System.Runtime.Serialization; | ||
|
||
namespace Checkout.Accounts | ||
{ | ||
public enum BankVerificationType | ||
{ | ||
[EnumMember(Value = "bank_statement")] BankStatement | ||
} | ||
} |
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,9 @@ | ||
namespace Checkout.Accounts | ||
{ | ||
public class DateOfIncorporation | ||
{ | ||
public int? Month { get; set; } | ||
|
||
public int? Year { 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,9 @@ | ||
namespace Checkout.Accounts | ||
{ | ||
public class FinancialVerification | ||
{ | ||
public FinancialVerificationType? Type { get; set; } | ||
|
||
public string Front { 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,10 @@ | ||
using System.Runtime.Serialization; | ||
|
||
namespace Checkout.Accounts | ||
{ | ||
public enum FinancialVerificationType | ||
{ | ||
[EnumMember(Value = "financial_statement")] | ||
FinancialStatement | ||
} | ||
} |
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,20 @@ | ||
using Checkout.Common; | ||
using System.Collections.Generic; | ||
|
||
namespace Checkout.Accounts | ||
{ | ||
public class ProcessingDetails | ||
{ | ||
public string SettlementCountry { get; set; } | ||
|
||
public IList<string> TargetCountries { get; set; } | ||
|
||
public int? AnnualProcessingVolume { get; set; } | ||
|
||
public int? AverageTransactionValue { get; set; } | ||
|
||
public int? HighestTransactionValue { get; set; } | ||
|
||
public Currency? Currency { 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,9 @@ | ||
namespace Checkout.Accounts | ||
{ | ||
public class ProofOfLegality | ||
{ | ||
public ProofOfLegalityType? Type { get; set; } | ||
|
||
public string Front { 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,10 @@ | ||
using System.Runtime.Serialization; | ||
|
||
namespace Checkout.Accounts | ||
{ | ||
public enum ProofOfLegalityType | ||
{ | ||
[EnumMember(Value = "proof_of_legality")] | ||
ProofOfLegality | ||
} | ||
} |
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.Accounts | ||
{ | ||
public class ProofOfPrincipalAddress | ||
{ | ||
public ProofOfPrincipalAddressType? Type { get; set; } | ||
|
||
public string Front { 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,10 @@ | ||
using System.Runtime.Serialization; | ||
|
||
namespace Checkout.Accounts | ||
{ | ||
public enum ProofOfPrincipalAddressType | ||
{ | ||
[EnumMember(Value = "proof_of_address")] | ||
ProofOfAddress | ||
} | ||
} |
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.Accounts | ||
{ | ||
public class ShareholderStructure | ||
{ | ||
public ShareholderStructureType? Type { get; set; } | ||
|
||
public string Front { 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,10 @@ | ||
using System.Runtime.Serialization; | ||
|
||
namespace Checkout.Accounts | ||
{ | ||
public enum ShareholderStructureType | ||
{ | ||
[EnumMember(Value = "certified_shareholder_structure")] | ||
CertifiedShareholderStructure | ||
} | ||
} |
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