Files
btcpayserver/BTCPayServer.Client/Models/WebhookEventType.cs
Andrew Camilleri 6e3d6125c2 Payment Settled Webhook event ()
* Payment Settled Webhook event

resolves 

* Move payment methods to payment services
2021-10-05 18:10:41 +09:00

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,
}
}