• 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 AgileIssue

Agile Issue information See: https://docs.atlassian.com/jira-software/REST/cloud/#agile/1.0/issue-getIssue

Inheritance
System.Object
BaseId<System.String>
BaseProperties<System.String>
IssueBase
IssueWithFields<AgileIssueFields>
AgileIssue
Inherited Members
IssueWithFields<AgileIssueFields>.Fields
IssueWithFields<AgileIssueFields>.RenderedFields
IssueBase.Key
BaseProperties<String>.Self
BaseId<String>.Id
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 AgileIssue : IssueWithFields<AgileIssueFields>

Properties

| Improve this Doc View Source

Sprint

Retrieve the sprint information, this is a hack for getting the information. More details are here I created a ticket about this here

Declaration
public Sprint Sprint { get; }
Property Value
Type Description
Sprint

Methods

| Improve this Doc View Source

GetEstimation(BoardConfiguration)

Retrieve the estimation (story points) from the issue, this only works by using the BoardConfiguration This is a conveniance method for the generic GetEstimation and assumes a long

Declaration
public long GetEstimation(BoardConfiguration boardConfiguration)
Parameters
Type Name Description
BoardConfiguration boardConfiguration

BoardConfiguration

Returns
Type Description
System.Int64

long with estimation or 0 if nothing

| Improve this Doc View Source

GetEstimation<T>(BoardConfiguration)

Retrieve the estimation (story points) from the issue, this only works by using the BoardConfiguration

Declaration
public T GetEstimation<T>(BoardConfiguration boardConfiguration)
Parameters
Type Name Description
BoardConfiguration boardConfiguration

BoardConfiguration

Returns
Type Description
T

T or default(T) if there is no value

Type Parameters
Name Description
T

Type for the estimation

| Improve this Doc View Source

GetRank(BoardConfiguration)

Retrieve the rank from the issue, this only works by using the BoardConfiguration

Declaration
public string GetRank(BoardConfiguration boardConfiguration)
Parameters
Type Name Description
BoardConfiguration boardConfiguration

BoardConfiguration

Returns
Type Description
System.String

Something which represents a rank

  • Improve this Doc
  • View Source
Back to top Copyright © 2017 Dapplo