interface IGetUserViewResponse { timestamp: Date; startTime: Date; endTime: Date; currency: string; organization: { id: number; short: string; fullname: string | null; }; metadata: { offset: number; limit: number; total: number; }; users: { id: number; login: string; total: number; orgUnit: { id: number; short: string; fullname: string; }; }[]; } export default IGetUserViewResponse;