/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface TimeTrackingDetailsAsResponse { /** * The original estimate of time needed for this issue in readable format. */ originalEstimate?: string; /** * The original estimate of time needed for this issue in seconds. */ originalEstimateSeconds?: number; /** * The remaining estimate of time needed for this issue in readable format. */ remainingEstimate?: string; /** * The remaining estimate of time needed for this issue in seconds. */ remainingEstimateSeconds?: number; /** * Time worked on this issue in readable format. */ timeSpent?: string; /** * Time worked on this issue in seconds. */ timeSpentSeconds?: number; } //# sourceMappingURL=TimeTrackingDetailsAsResponse.d.ts.map