/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface TimeTrackingConfigurationAsResponse { /** * The default unit of time applied to logged time. */ defaultUnit: "minute" | "hour" | "day" | "week"; /** * The format that will appear on an issue's *Time Spent* field. */ timeFormat: "pretty" | "days" | "hours"; /** * The number of days in a working week. */ workingDaysPerWeek: number; /** * The number of hours in a working day. */ workingHoursPerDay: number; } //# sourceMappingURL=TimeTrackingConfigurationAsResponse.d.ts.map