/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Returns * { * "data": { * "2022-04-26": 0, * "2022-04-27": 0, * ... * "2023-01-01": 0 * }, * "total": 0 * } */ export type OverTimeWithTotal = { /** * Dates are keys and values are the value for the date in the key. e,g `{"2020-01-01": 30. ...}` */ data?: Record; /** * Total */ total?: number; };