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 }