import { RequestAttachmentCreateOrUpdate } from './requestAttachmentCreateOrUpdate'; import { RequestJournalEntryItemCreateOrUpdate } from './requestJournalEntryItemCreateOrUpdate'; export interface RequestJournalEntryCreateOrUpdate { status?: string; date: string; code?: string; items: RequestJournalEntryItemCreateOrUpdate[]; attachments?: RequestAttachmentCreateOrUpdate[]; comments?: string; procurement?: string; disableQuickbooks?: boolean; }