import { IDefaultAttributes } from './commonInterface'; import { RMS_RESOURCE_TYPE, COMMAN_STATUS, RMS_RESOURCE_UNIT } from '../constants/app'; export interface IRmsResourceAttributes extends IDefaultAttributes { id: string; instituteId: string; resourceCode: string; resourceName: string; resourceType: RMS_RESOURCE_TYPE; categoryId?: string | null; subCategoryId?: string | null; unit: RMS_RESOURCE_UNIT; departmentId?: string | null; defaultLocationId?: string | null; custodianId?: string[] | null; description?: string | null; minStockLevel: number; metadata?: object | null; status: COMMAN_STATUS; }