Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
KycInvalidation.cs
1using System;
2
4{
8 public class KycInvalidClaim
9 {
10 public string Claim { get; set; } = string.Empty;
11 public string Reason { get; set; } = string.Empty;
12 public string ReasonLanguage { get; set; } = string.Empty;
13 public string ReasonCode { get; set; } = string.Empty;
14 public string Service { get; set; } = string.Empty;
15
16 public KycInvalidClaim()
17 {
18 }
19
20 public KycInvalidClaim(string Claim, string Reason, string ReasonLanguage, string ReasonCode, string Service)
21 {
22 this.Claim = Claim ?? string.Empty;
23 this.Reason = Reason ?? string.Empty;
24 this.ReasonLanguage = ReasonLanguage ?? string.Empty;
25 this.ReasonCode = ReasonCode ?? string.Empty;
26 this.Service = Service ?? string.Empty;
27 }
28 }
29
33 public class KycInvalidPhoto
34 {
35 public string FileName { get; set; } = string.Empty;
36 public string Mapping { get; set; } = string.Empty;
37 public string Reason { get; set; } = string.Empty;
38 public string ReasonLanguage { get; set; } = string.Empty;
39 public string ReasonCode { get; set; } = string.Empty;
40 public string Service { get; set; } = string.Empty;
41
42 public KycInvalidPhoto()
43 {
44 }
45
46 public KycInvalidPhoto(string FileName, string Mapping, string Reason, string ReasonLanguage, string ReasonCode, string Service)
47 {
48 this.FileName = FileName ?? string.Empty;
49 this.Mapping = Mapping ?? string.Empty;
50 this.Reason = Reason ?? string.Empty;
51 this.ReasonLanguage = ReasonLanguage ?? string.Empty;
52 this.ReasonCode = ReasonCode ?? string.Empty;
53 this.Service = Service ?? string.Empty;
54 }
55 }
56}
57
Detailed reason info for an invalidated claim.
Detailed reason info for an invalidated photo/attachment.