Files
btcpayserver/BTCPayServer/HostedServices/Webhooks/IWebhookProvider.cs
2025-07-02 09:55:40 +09:00

15 lines
364 B
C#

#nullable enable
using System.Collections.Generic;
using BTCPayServer.Client.Models;
namespace BTCPayServer.HostedServices.Webhooks;
public interface IWebhookProvider
{
public bool SupportsCustomerEmail { get; }
public Dictionary<string, string> GetSupportedWebhookTypes();
public WebhookEvent CreateTestEvent(string type, params object[] args);
}