interface IGetServiceViewResponse { 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; amount: number; unit: string; unitPrice: number; total: number; }[]; } export default IGetServiceViewResponse;