Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
KycMapping.cs
2
4{
8 public class KycMapping
9 {
13 public string Key { get; set; } = string.Empty;
14
18 public List<string> TransformNames { get; } = new List<string>();
19 }
20}
Mapping from a field value to an identity property, including optional transform pipeline.
Definition: KycMapping.cs:9
List< string > TransformNames
Ordered list of transform identifiers to apply. Empty means no transforms.
Definition: KycMapping.cs:18
string Key
Target identity property key.
Definition: KycMapping.cs:13