Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IValidationError.cs
2
3namespace Paiwise
4{
8 public interface IValidationError
9 {
14
18 public string ErrorMessage { get; }
19
23 public string ErrorLanguage { get; }
24
28 public string ErrorCode { get; }
29
33 public object Service { get; }
34
38 public KeyValuePair<string, object>[] Tags { get; }
39 }
40}
Contains information about a validation error.
object Service
Service reporting the error.
ValidationErrorType ErrorType
Type of error.
KeyValuePair< string, object >[] Tags
Tags annotating the error message.
string ErrorLanguage
Language ISO code of ErrorMessage.
string ErrorMessage
Error message that can be sent to origin
string ErrorCode
Machine-readable error code (service-specific).
ValidationErrorType
Type of validation error.