import { RequestAttachmentCreateOrUpdate } from './requestAttachmentCreateOrUpdate'; export interface RequestPenaltyCreateOrUpdate { status?: string; code?: string; date: string; customer: string; customerRemarks?: string; reason: string; amount: number; attachments?: RequestAttachmentCreateOrUpdate[]; comments?: string; payment?: string; disableQuickBooks?: boolean; }