import { Subjects } from '../subjects'; import { NbInvoiceType } from '../../types/notasBr'; export interface NotasBrInvoiceAuthorizedEvent { subject: Subjects.NotasBrInvoiceAuthorized; data: { accountId: string; companyId: string; invoiceId: string; invoiceType: NbInvoiceType; number: string; series?: string; accessKey?: string; issuerName: string; recipientName: string; recipientEmails: string[]; totalAmount: number; pdfUrl: string; xmlUrl: string; authorizedAt: string; timestamp: string; }; }