Webiant Logo Webiant Logo
  1. No results found.

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

Event.cs

using Newtonsoft.Json;

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

[JsonObject]
[Serializable]
public class Event
{
    /// 
    /// Required. The name for the event
    /// 
    [JsonProperty("name")]
    public string Name { get; set; }

    /// 
    /// Optional. The parameters for the event
    /// 
    [JsonProperty("params")]
    public Parameters Params { get; set; }
}