/** * # The Accounting Attachment Object * ### Description * The `AccountingAttachment` object is used to represent a company's attachments. * * ### Usage Example * Fetch from the `LIST AccountingAttachments` endpoint and view a company's attachments. */ export interface AccountingAttachmentRequest { /** The attachment's name. */ fileName?: string; /** The attachment's url. */ fileUrl?: string; /** The company the accounting attachment belongs to. */ company?: string; integrationParams?: Record; linkedAccountParams?: Record; }