Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

ValidationMessage.cs

using Newtonsoft.Json;

namespace Nop.Plugin.Widgets.GoogleAnalytics.Api.Models;

public class ValidationMessage
{
    /// 
    /// The path to the field that was invalid
    /// 
    [JsonProperty("fieldPath")]
    public string FieldPath { get; set; }

    /// 
    /// A description of the error
    /// 
    [JsonProperty("description")]
    public string Description { get; set; }

    /// 
    /// A ValidationCode that corresponds to the error
    /// 
    [JsonProperty("validationCode")]
    public string ValidationCode { get; set; }
}