mirror of
https://github.com/bitwarden/server
synced 2026-01-08 11:33:26 +00:00
18 lines
896 B
C#
18 lines
896 B
C#
namespace Bit.Billing.Constants;
|
|
|
|
public static class HandledStripeWebhook
|
|
{
|
|
public const string SubscriptionDeleted = "customer.subscription.deleted";
|
|
public const string SubscriptionUpdated = "customer.subscription.updated";
|
|
public const string UpcomingInvoice = "invoice.upcoming";
|
|
public const string ChargeSucceeded = "charge.succeeded";
|
|
public const string ChargeRefunded = "charge.refunded";
|
|
public const string PaymentSucceeded = "invoice.payment_succeeded";
|
|
public const string PaymentFailed = "invoice.payment_failed";
|
|
public const string InvoiceCreated = "invoice.created";
|
|
public const string PaymentMethodAttached = "payment_method.attached";
|
|
public const string CustomerUpdated = "customer.updated";
|
|
public const string InvoiceFinalized = "invoice.finalized";
|
|
public const string SetupIntentSucceeded = "setup_intent.succeeded";
|
|
}
|