Webiant Logo Webiant Logo
  1. No results found.

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

GetWebhooksResponse.cs

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
}