Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ApplicationReviewEventArgs.cs
1using System;
3
5{
9 public sealed class ApplicationReviewEventArgs : EventArgs
10 {
17 {
18 this.Reference = reference ?? throw new ArgumentNullException(nameof(reference));
19 this.Review = review;
20 }
21
25 public KycReference Reference { get; }
26
30 public ApplicationReview? Review { get; }
31 }
32}
Captures the result of an application review returned from backend services.
Event arguments emitted when a KYC application review changes.
ApplicationReviewEventArgs(KycReference reference, ApplicationReview? review)
Initializes a new instance of the ApplicationReviewEventArgs class.
KycReference Reference
Gets the reference associated with the update.
Contains a local reference to a KYC process.
Definition: KycReference.cs:22