Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
KycReferenceSnapshot.cs
1using System;
4
6{
11 public sealed class KycReferenceSnapshot
12 {
14 string? objectId,
15 int version,
16 KycFieldValue[]? fields,
17 double progress,
18 string? lastVisitedPageId,
19 string lastVisitedMode,
20 ApplicationReview? applicationReview,
21 DateTime createdUtc,
22 DateTime updatedUtc)
23 {
24 this.ObjectId = objectId;
25 this.Version = version;
26 this.Fields = fields;
27 this.Progress = progress;
28 this.LastVisitedPageId = lastVisitedPageId;
29 this.LastVisitedMode = lastVisitedMode;
30 this.ApplicationReview = applicationReview;
31 this.CreatedUtc = createdUtc;
32 this.UpdatedUtc = updatedUtc;
33 }
34
35 public string? ObjectId { get; }
36 public int Version { get; }
37 public KycFieldValue[]? Fields { get; }
38 public double Progress { get; }
39 public string? LastVisitedPageId { get; }
40 public string LastVisitedMode { get; }
42 public DateTime CreatedUtc { get; }
43 public DateTime UpdatedUtc { get; }
44 }
45}
Captures the result of an application review returned from backend services.
Immutable snapshot of the state of a KycReference at a point in time. Used to persist ordered,...
Represents a field value in a KYC process reference.