Class TimeTracking
Timetracking information
Inheritance
System.Object
TimeTracking
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace:Dapplo.Jira.Entities
Assembly:Dapplo.Jira.dll
Syntax
[JsonObject]
public class TimeTracking
Properties
| Improve this Doc View SourceOriginalEstimate
The originaly estimated time for this issue
Declaration
[JsonProperty(PropertyName = "originalEstimate")]
public string OriginalEstimate { get; set; }
Property Value
Type | Description |
---|---|
System.String |
OriginalEstimateSeconds
The originaly estimated time for this issue
Declaration
[JsonProperty(PropertyName = "originalEstimateSeconds")]
public long ? OriginalEstimateSeconds { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int64> |
RemainingEstimate
The remaining estimated time for this issue
Declaration
[JsonProperty(PropertyName = "remainingEstimate")]
public string RemainingEstimate { get; set; }
Property Value
Type | Description |
---|---|
System.String |
RemainingEstimateSeconds
The remaining estimated time, in seconds, for this issue
Declaration
[JsonProperty(PropertyName = "remainingEstimateSeconds")]
public long ? RemainingEstimateSeconds { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int64> |
TimeSpent
Time spent in form of "4w 4d 2h"
Declaration
[JsonProperty(PropertyName = "timeSpent")]
public string TimeSpent { get; set; }
Property Value
Type | Description |
---|---|
System.String |
TimeSpentSeconds
Time spent in seconds
Declaration
[JsonProperty(PropertyName = "timeSpentSeconds")]
public long ? TimeSpentSeconds { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int64> |