using Newtonsoft.Json; using Nop.Plugin.Payments.PayPalCommerce.Services.Api.Models; namespace Nop.Plugin.Payments.PayPalCommerce.Services.Api.Webhooks; /// /// Represents the response to a request to get all webhooks for an app /// public class GetWebhooksResponse : IApiResponse { #region Properties /// /// Gets or sets the array of webhooks. /// [JsonProperty(PropertyName = "webhooks")] public List Webhooks { get; set; } #endregion }