import { MissionTypes, ActivityNoShowReason } from '../enums'; import { BaseModel } from './BaseModel'; export interface ActivityNoShowJustification extends BaseModel { reason: ActivityNoShowReason; anotherReason: string; activityId: string; workerId: string; answeredByUserId: string; jobId: string; companyId: string; companyName: string; establishmentId: string; establishmentName: string; activityType: MissionTypes; pending: boolean; answeredAt: Date; activityStartDateTime: Date; activityEndDateTime: Date; }