using Umbraco.Cms.Core.Webhooks; namespace Umbraco.Cms.Core; public static partial class Constants { public static class Webhooks { /// /// Gets the default webhook payload type. /// /// /// Currently, the default payload type is for backward compatibility until Umbraco 17. /// From Umbraco 17 this will be changed to . /// public const WebhookPayloadType DefaultPayloadType = WebhookPayloadType.Legacy; } }