Class Transition
Transition 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 Transition : BaseId<long>
Properties
| Improve this Doc View SourceHasScreen
Does this transition have a screen?
Declaration
[JsonProperty(PropertyName = "hasScreen")]
public bool HasScreen { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Name
Name for this transition
Declaration
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
PossibleFields
Possible fields for the transation
Declaration
[JsonProperty(PropertyName = "fields")]
public IDictionary<string, PossibleField> PossibleFields { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IDictionary<System.String, PossibleField> |
To
To status for the transation
Declaration
[JsonProperty(PropertyName = "to")]
public Status To { get; set; }
Property Value
Type | Description |
---|---|
Status |