Webiant Logo Webiant Logo
  1. No results found.

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

ExtendedWebhookResource.cs

using System.Runtime.Serialization;

namespace PayPal.v1.Webhooks;

/// 
/// Represents an extended webhook resource object. Some important properties were missed in the original object.
/// 
[DataContract]
public class ExtendedWebhookResource
{
    /// 
    /// The API caller-provided external ID. Used to reconcile client transactions with PayPal transactions. 
    /// Appears in transaction and settlement reports but is not visible to the payer.
    /// 
    [DataMember(Name = "custom_id", EmitDefaultValue = false)]
    public string CustomId { get; set; }
}