Try your search with a different keyword or use * as a wildcard.
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; }
}