import { Subjects } from '../subjects'; import { NbInvoiceType } from '../../types/notasBr'; export interface NotasBrInvoiceRejectedEvent { subject: Subjects.NotasBrInvoiceRejected; data: { accountId: string; companyId: string; invoiceId: string; invoiceType: NbInvoiceType; issuerName: string; ownerEmail: string; rejectionCode: string; rejectionMessage: string; friendlyMessage: string; rejectedAt: string; timestamp: string; }; }