Try your search with a different keyword or use * as a wildcard.
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 verify a webhook signature
///
public class CreateWebhookSignatureResponse : WebhookSignature, IApiResponse
{
#region Properties
///
/// Gets or sets the status of the signature verification.
///
[JsonProperty(PropertyName = "verification_status")]
public string VerificationStatus { get; set; }
#endregion
}