using Event = Stripe.Event;
namespace Bit.Billing.Services;
public interface IStripeEventProcessor
{
///
/// Processes the specified Stripe event asynchronously.
///
/// The Stripe event to be processed.
/// A task representing the asynchronous operation.
Task ProcessEventAsync(Event parsedEvent);
}