Webiant Logo Webiant Logo
  1. No results found.

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

WebhookResource.cs

using Newtonsoft.Json;

namespace Nop.Plugin.Payments.PayPalCommerce.Services.Api.Models;

/// 
/// Represents the webhook resource
/// 
public class WebhookResource : IWebhookResource
{
    #region Properties

    /// 
    /// Gets or sets the API caller-provided external ID.
    /// 
    [JsonProperty(PropertyName = "custom_id")]
    public string CustomId { get; set; }

    #endregion
}