* Payment Settled Webhook event resolves #2691 * Move payment methods to payment services
18 lines
340 B
C#
18 lines
340 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace BTCPayServer.Client.Models
|
|
{
|
|
public enum WebhookEventType
|
|
{
|
|
InvoiceCreated,
|
|
InvoiceReceivedPayment,
|
|
InvoiceProcessing,
|
|
InvoiceExpired,
|
|
InvoiceSettled,
|
|
InvoiceInvalid,
|
|
InvoicePaymentSettled,
|
|
}
|
|
}
|