/** * Transaction details related to the invoice. * Contains payment and transaction information for the document being issued. */ export declare class TransactionData { /** Unique identifier for the transaction */ transactionId: string; /** Transaction amount */ amount: number; /** Payment method used for the transaction */ paymentMethod: string; /** Transaction date */ date: Date; }