import { IDefaultAttributes } from './commonInterface'; import { RMS_TICKET_STATUS, RMS_TICKET_PRIORITY } from '../constants/app'; export interface IRmsMaintenanceTicketAttributes extends IDefaultAttributes { id: string; instituteId: string; resourceId?: string | null; assetId?: string | null; facilityId?: string | null; reportedBy: string; assignedTo?: string | null; issueDescription: string; priority: RMS_TICKET_PRIORITY; status: RMS_TICKET_STATUS; expectedCompletionDate?: Date | null; actualCompletionDate?: Date | null; resolutionNotes?: string | null; cost?: number | null; }