import { IDefaultAttributes } from './commonInterface'; export interface IRmsPurchaseRequestItemAttributes extends IDefaultAttributes { id: string; instituteId: string; purchaseRequestId: string; resourceId: string; description?: string | null; quantity: number; estimatedRate?: number | null; estimatedAmount?: number | null; approvedQuantity?: number | null; remarks?: string | null; status: string; }