/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Individual overtime data point. */ export type OvertimeData = { /** * Date in YYYY-MM-DD format */ date: string; /** * Cost value for this time period */ value: string; };