import { ActivityCheckInLocationJustification, ActivityCheckInType } from '../enums'; import { BaseModel } from './BaseModel'; import { Points } from './nested/Points'; export interface ActivityCheckIn extends BaseModel { activityId?: string; checkInDateTime?: Date; checkInLocation?: Points; checkOutDateTime?: Date; checkOutLocation?: Points; checkInSelfieId?: string; checkOutSelfieId?: string; wrongLocationJustification?: ActivityCheckInLocationJustification; successful?: boolean; type?: ActivityCheckInType; workerId?: string; managerId?: string; }