Class IssueType
IssueType information
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 IssueType : BaseProperties<long>
Properties
| Improve this Doc View SourceDescription
Description of the issue type
Declaration
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
Property Value
Type | Description |
---|---|
System.String |
IconUri
URL to the icon for the issue type
Declaration
[JsonProperty(PropertyName = "iconUrl")]
public Uri IconUri { get; set; }
Property Value
Type | Description |
---|---|
System.Uri |
IsSubTask
Is the issue type a sub task?
Declaration
[JsonProperty(PropertyName = "subtask")]
public bool IsSubTask { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Name
Name of the issue type
Declaration
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |