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 }