-
Notifications
You must be signed in to change notification settings - Fork 26
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
efeecfd
commit d016e39
Showing
5 changed files
with
43 additions
and
0 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
9 changes: 9 additions & 0 deletions
9
src/CheckoutSdk/Accounts/Entities/Common/Documents/ProofOfRegistration.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,9 @@ | ||
namespace Checkout.Accounts.Entities.Common.Documents | ||
{ | ||
public class ProofOfRegistration | ||
{ | ||
public ProofOfRegistrationType? Type { get; set; } | ||
|
||
public string Front { get; set; } | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
src/CheckoutSdk/Accounts/Entities/Common/Documents/ProofOfRegistrationType.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,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 | ||
} | ||
} |
9 changes: 9 additions & 0 deletions
9
src/CheckoutSdk/Accounts/Entities/Common/Documents/ProofOfResidentialAddress.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,9 @@ | ||
namespace Checkout.Accounts.Entities.Common.Documents | ||
{ | ||
public class ProofOfResidentialAddress | ||
{ | ||
public ProofOfResidentialAddressType? Type { get; set; } | ||
|
||
public string Front { get; set; } | ||
} | ||
} |
9 changes: 9 additions & 0 deletions
9
src/CheckoutSdk/Accounts/Entities/Common/Documents/ProofOfResidentialAddressType.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,9 @@ | ||
using System.Runtime.Serialization; | ||
|
||
namespace Checkout.Accounts.Entities.Common.Documents | ||
{ | ||
public enum ProofOfResidentialAddressType | ||
{ | ||
[EnumMember(Value = "proof_of_address")] ProofOfAddress | ||
} | ||
} |