Validation message.

interface IValidationResultItem {
    details: string;
    fieldName: string;
    info: IStorage;
    key: ValidationKey;
    message: string;
    objectName: string;
    objectType: string;
    type: ValidationResultType;
    tryGetInfo(): null | IStorage;
}

Implemented by

Properties

details: string

Additional information about the message, such as the full text of the exception, or '' if there is no additional information.

fieldName: string

The name of the field of the object to which the validation message refers, or '' if the field is unknown.

info: IStorage

Additional info.

The key of the message that occurred during validation.

message: string

The text of the message that occurred during validation.

objectName: string

The name of the object to which the validation message refers, or '' if the name is unknown.

objectType: string

The type of the object to which the validation message refers, or '' if the type is unknown.

The type of message that occurred during validation.

Methods

  • Additional info.

    Returns null | IStorage

MMNEPVFCICPMFPCPTTAAATR