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