Class IssueFields
Container for the fields
Inherited Members
Namespace:Dapplo.Jira.Entities
Assembly:Dapplo.Jira.dll
Syntax
[JsonObject]
public class IssueFields
Properties
| Improve this Doc View SourceAggregateTimeSpent
The summary of the time spend on this issue
Declaration
[JsonProperty(PropertyName = "aggregatetimespent")]
public long ? AggregateTimeSpent { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int64> |
Assignee
User who this issue is assigned to
Declaration
[JsonProperty(PropertyName = "assignee")]
public User Assignee { get; set; }
Property Value
Type | Description |
---|---|
User |
Attachments
Attachments for this issue
Declaration
[JsonProperty(PropertyName = "attachment")]
public IList<Attachment> Attachments { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<Attachment> |
Comments
Container for the comments for this issue
Declaration
[JsonProperty(PropertyName = "comment")]
public Comments Comments { get; set; }
Property Value
Type | Description |
---|---|
Comments |
Components
Components for this issue
Declaration
[JsonProperty(PropertyName = "components")]
public IList<Component> Components { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<Component> |
Created
When was this issue created
Declaration
[JsonProperty(PropertyName = "created")]
public DateTimeOffset? Created { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTimeOffset> |
Creator
User who created this issue
Declaration
[JsonProperty(PropertyName = "creator")]
public User Creator { get; set; }
Property Value
Type | Description |
---|---|
User |
CustomFields
All custom field values, or rather those that don't have a matching
Declaration
[JsonExtensionData]
public IDictionary<string, object> CustomFields { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IDictionary<System.String, System.Object> |
Description
Description of this issue
Declaration
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
Property Value
Type | Description |
---|---|
System.String |
FixVersions
Versions where this issue is fixed
Declaration
[JsonProperty(PropertyName = "fixVersions")]
public IList<Version> FixVersions { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<Version> |
IssueType
Type of the issue
Declaration
[JsonProperty(PropertyName = "issuetype")]
public IssueType IssueType { get; set; }
Property Value
Type | Description |
---|---|
IssueType |
Labels
Labels for this issue
Declaration
[JsonProperty(PropertyName = "labels")]
public IList<string> Labels { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<System.String> |
LastViewed
When was this issue viewed (by whom??)
Declaration
[JsonProperty(PropertyName = "lastViewed")]
public DateTimeOffset? LastViewed { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTimeOffset> |
Priority
Priority for this issue
Declaration
[JsonProperty(PropertyName = "priority")]
public Priority Priority { get; set; }
Property Value
Type | Description |
---|---|
Priority |
Progress
Progress for this issue
Declaration
[JsonProperty(PropertyName = "progress")]
public ProgressInfo Progress { get; set; }
Property Value
Type | Description |
---|---|
ProgressInfo |
Project
Project to which this issue belongs
Declaration
[JsonProperty(PropertyName = "project")]
public Project Project { get; set; }
Property Value
Type | Description |
---|---|
Project |
Reporter
What user reported the issue?
Declaration
[JsonProperty(PropertyName = "reporter")]
public User Reporter { get; set; }
Property Value
Type | Description |
---|---|
User |
Resolution
The resolution for this issue
Declaration
[JsonProperty(PropertyName = "resolution")]
public Resolution Resolution { get; set; }
Property Value
Type | Description |
---|---|
Resolution |
ResolutionData
Resolution date for this issue
Declaration
[JsonProperty(PropertyName = "resolutiondate")]
public DateTimeOffset? ResolutionData { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTimeOffset> |
Status
Current status of the issue
Declaration
[JsonProperty(PropertyName = "status")]
public Status Status { get; set; }
Property Value
Type | Description |
---|---|
Status |
Summary
Summary for the issue
Declaration
[JsonProperty(PropertyName = "summary")]
public string Summary { get; set; }
Property Value
Type | Description |
---|---|
System.String |
TimeSpent
How much time is spent on this issue
Declaration
[JsonProperty(PropertyName = "timespent")]
public long ? TimeSpent { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int64> |
TimeTracking
Time tracking information
Declaration
[JsonProperty(PropertyName = "timetracking")]
public TimeTracking TimeTracking { get; set; }
Property Value
Type | Description |
---|---|
TimeTracking |
Updated
When was the last update
Declaration
[JsonProperty(PropertyName = "updated")]
public DateTimeOffset? Updated { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTimeOffset> |
Versions
Version for which this ticket is
Declaration
[JsonProperty(PropertyName = "versions")]
public IList<Version> Versions { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<Version> |
Watches
Information on the watches for the ticket
Declaration
[JsonProperty(PropertyName = "watches")]
public Watches Watches { get; set; }
Property Value
Type | Description |
---|---|
Watches |
Worklogs
The worklog entries
Declaration
[JsonProperty(PropertyName = "worklog")]
public Worklogs Worklogs { get; set; }
Property Value
Type | Description |
---|---|
Worklogs |