Webiant Logo Webiant Logo
  1. No results found.

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

CreateWebhookSignatureResponse.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 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
}