import { Subjects } from '../subjects'; import { Tenant } from '../../types/tenant'; export interface SubscriptionCancelledEvent { subject: Subjects.SubscriptionCancelled; data: { tenant: Tenant; externalSubscriptionId: string; cancelledAt: string; timestamp: string; }; }