import { Subjects } from '../subjects'; import { NbInvoiceType } from '../../types/notasBr'; export interface NotasBrInvoiceCancelledEvent { subject: Subjects.NotasBrInvoiceCancelled; data: { accountId: string; companyId: string; invoiceId: string; invoiceType: NbInvoiceType; number: string; accessKey?: string; issuerName: string; recipientName: string; recipientEmails: string[]; reason: string; cancelledAt: string; timestamp: string; }; }