Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,12 @@ public class Documents

public TaxVerification TaxVerification { get; set; }

// EEA Sole Trader (3.0) Representatives

public ProofOfResidentialAddress ProofOfResidentialAddress { get; set; }

public ProofOfRegistration ProofOfRegistration { get; set; }

// Unknown

public FinancialVerification FinancialVerification { get; set; }
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
namespace Checkout.Accounts.Entities.Common.Documents
{
public class ProofOfRegistration
{
public ProofOfRegistrationType? Type { get; set; }

public string Front { get; set; }
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
using System.Runtime.Serialization;

namespace Checkout.Accounts.Entities.Common.Documents
{
public enum ProofOfRegistrationType
{
[EnumMember(Value = "extract_from_trade_register")] ExtractFromTradeRegister,
[EnumMember(Value = "other")] Other
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
namespace Checkout.Accounts.Entities.Common.Documents
{
public class ProofOfResidentialAddress
{
public ProofOfResidentialAddressType? Type { get; set; }

public string Front { get; set; }
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
using System.Runtime.Serialization;

namespace Checkout.Accounts.Entities.Common.Documents
{
public enum ProofOfResidentialAddressType
{
[EnumMember(Value = "proof_of_address")] ProofOfAddress
}
}
Loading