fix(stripe): correcting webhook

This commit is contained in:
2025-08-04 17:15:13 -04:00
parent 18532963a8
commit ea8efd21a1
6 changed files with 134 additions and 113 deletions

View File

@@ -1,10 +1,10 @@
namespace Hutopy.Modules.Tipping.Contracts;
public interface ITipPaymentNotifier
internal interface ITipPaymentNotifier
{
Task NotifyPaymentSucceedAsync(
string stripeId,
string invoiceUrl,
string sessionId,
Uri receiptUrl,
string customerEmail,
CancellationToken ct);
}