• Articles
  • Api Documentation
Show / Hide Table of Contents
  • Dapplo.Jira
    • AgileExtensions
    • AttachmentExtensions
    • FilterExtensions
    • IJiraClient
    • IssueExtensions
    • JiraClient
    • JiraConfig
    • JiraException
    • ProjectExtensions
    • ServerExtensions
    • SessionExtensions
    • TimeSpanExtensions
    • UserExtensions
    • WorkExtensions
  • Dapplo.Jira.Domains
    • IAgileDomain
    • IAttachmentDomain
    • IFilterDomain
    • IIssueDomain
    • IJiraDomain
    • IProjectDomain
    • IServerDomain
    • ISessionDomain
    • IUserDomain
    • IWorkDomain
  • Dapplo.Jira.Entities
    • AgileIssue
    • AgileIssueFields
    • AllowedValue
    • Attachment
    • AttachmentContainer<T>
    • AvatarUrls
    • BaseId<TId>
    • BaseProperties<TId>
    • Board
    • BoardConfiguration
    • Column
    • ColumnConfig
    • Comment
    • Comments
    • Component
    • ComponentDigest
    • Configuration
    • Epic
    • EpicColor
    • Error
    • EstimationCustomFieldInfo
    • EstimationFieldInfo
    • Field
    • Filter
    • Issue
    • IssueBase
    • IssueFields
    • IssueType
    • IssueWithFields<TFields>
    • LoginInfo
    • Pageable
    • PageableResult
    • PossibleField
    • Priority
    • ProgressInfo
    • Project
    • ProjectCategory
    • ProjectDigest
    • RankingCustomFieldInfo
    • Resolution
    • Results<TResultType>
    • Schema
    • Search
    • SearchResult<TIssue>
    • ServerInfo
    • SharePermission
    • Sprint
    • Status
    • StatusCategory
    • Subscription
    • Subscriptions
    • TimeTracking
    • TimeTrackingConfiguration
    • Transition
    • Transitions
    • User
    • Version
    • Visibility
    • VoteInfo
    • Watches
    • Worklog
    • Worklogs
  • Dapplo.Jira.Enums
    • AdjustEstimate
    • AvatarSizes
    • BoardTypes
  • Dapplo.Jira.Json
    • CustomDateTimeOffsetConverter
  • Dapplo.Jira.Query
    • DatetimeClause
    • Fields
    • IDatetimeClause
    • IDatetimeClauseWithoutValue
    • IFinalClause
    • IIssueClause
    • IProjectClause
    • ISimpleValueClause
    • IssueClause
    • ITextClause
    • ITypeClause
    • IUserClause
    • IVersionClause
    • Operators
    • ProjectClause
    • SimpleValueClause
    • TextClause
    • TypeClause
    • UserClause
    • VersionClause
    • Where

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 Source

OriginalEstimate

The originaly estimated time for this issue

Declaration
[JsonProperty(PropertyName = "originalEstimate")]
public string OriginalEstimate { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

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>
| Improve this Doc View Source

RemainingEstimate

The remaining estimated time for this issue

Declaration
[JsonProperty(PropertyName = "remainingEstimate")]
public string RemainingEstimate { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

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>
| Improve this Doc View Source

TimeSpent

Time spent in form of "4w 4d 2h"

Declaration
[JsonProperty(PropertyName = "timeSpent")]
public string TimeSpent { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

TimeSpentSeconds

Time spent in seconds

Declaration
[JsonProperty(PropertyName = "timeSpentSeconds")]
public long ? TimeSpentSeconds { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>
  • Improve this Doc
  • View Source
Back to top Copyright © 2017 Dapplo