Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
KycFieldValue.cs
1using System;
3
5{
9 public class KycFieldValue
10 {
14 [DefaultValueStringEmpty]
15 public string FieldId { get; set; } = string.Empty;
16
20 [DefaultValueNull]
21 public string? Value { get; set; }
22
26 public KycFieldValue() { }
27
33 public KycFieldValue(string fieldId, string? value)
34 {
35 this.FieldId = fieldId;
36 this.Value = value;
37 }
38 }
39}
Represents a field value in a KYC process reference.
KycFieldValue(string fieldId, string? value)
Initializes a new instance of the KycFieldValue class with the specified field ID and value.
KycFieldValue()
Initializes a new instance of the KycFieldValue class.
string FieldId
Gets or sets the field identifier (unique within the process).
string? Value
Gets or sets the value of the field as a string.