Try your search with a different keyword or use * as a wildcard.
using Microsoft.AspNetCore.Http;
using Newtonsoft.Json;
using Nop.Plugin.Payments.PayPalCommerce.Services.Api.Models;
namespace Nop.Plugin.Payments.PayPalCommerce.Services.Api.Webhooks;
///
/// Represents the request to subscribe a webhook listener to events
///
public class CreateWebhookRequest : Webhook, IAuthorizedRequest
{
#region Properties
///
/// Gets the request path
///
[JsonIgnore]
public string Path => $"v1/notifications/webhooks?";
///
/// Gets the request method
///
[JsonIgnore]
public string Method => HttpMethods.Post;
#endregion
}