import { OnDemandJobPaymentMethod } from '../../../enums'; export interface OnDemandJobEventData { _id: string; company: string; template: string; visibility: boolean; paymentMethod: OnDemandJobPaymentMethod; anthors: number; days: string[] | Date[]; startHour: Date; durationInHours: number; description: string; price: number; version: number; }