interface IGetServiceAndDayViewResponse { timestamp: Date; startTime: Date; endTime: Date; currency: string; organization: { id: number; short: string; fullname: string | null; }; metadata: { offset: number; limit: number; total: number; }; services: { id: number; name: string; unit: string; days: { date: string; amount: number; total: number; }[]; }[]; } export default IGetServiceAndDayViewResponse;