public void InvoicePaymentSucceeded(DateTime?eventTimestamp, StripeInvoice invoice)
 {
     _logger.Debug($"Processing invoice.payment_succeeded event for subscription id {invoice.Subscription}");
     _donationService.CreateDonationForInvoice(invoice);
 }