Try your search with a different keyword or use * as a wildcard.
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; }
}