mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 05:54:26 +01:00
24 lines
1.4 KiB
C#
24 lines
1.4 KiB
C#
namespace BTCPayServer.Client.Models;
|
|
|
|
// TODO: This should be moved to individual Webhook Event Providers
|
|
public static class WebhookEventType
|
|
{
|
|
public const string InvoiceCreated = nameof(InvoiceCreated);
|
|
public const string InvoiceReceivedPayment = nameof(InvoiceReceivedPayment);
|
|
public const string InvoicePaymentSettled = nameof(InvoicePaymentSettled);
|
|
public const string InvoiceProcessing = nameof(InvoiceProcessing);
|
|
public const string InvoiceExpired = nameof(InvoiceExpired);
|
|
public const string InvoiceSettled = nameof(InvoiceSettled);
|
|
public const string InvoiceInvalid = nameof(InvoiceInvalid);
|
|
public const string InvoiceExpiredPaidPartial = nameof(InvoiceExpiredPaidPartial);
|
|
public const string InvoicePaidAfterExpiration = nameof(InvoicePaidAfterExpiration);
|
|
public const string PayoutCreated = nameof(PayoutCreated);
|
|
public const string PayoutApproved = nameof(PayoutApproved);
|
|
public const string PayoutUpdated = nameof(PayoutUpdated);
|
|
public const string PaymentRequestUpdated = nameof(PaymentRequestUpdated);
|
|
public const string PaymentRequestCreated = nameof(PaymentRequestCreated);
|
|
public const string PaymentRequestArchived = nameof(PaymentRequestArchived);
|
|
public const string PaymentRequestStatusChanged = nameof(PaymentRequestStatusChanged);
|
|
public const string PaymentRequestCompleted = nameof(PaymentRequestCompleted);
|
|
}
|