Class VoteInfo
Vote information
Inheritance
System.Object
VoteInfo
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 VoteInfo
Properties
| Improve this Doc View SourceHasVoted
Does the issue have votes?
Declaration
[JsonProperty(PropertyName = "hasVoted")]
public bool HasVoted { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Self
Link to itself
Declaration
[JsonProperty(PropertyName = "self")]
public Uri Self { get; set; }
Property Value
Type | Description |
---|---|
System.Uri |
Voters
Who are the voters
Declaration
[JsonProperty(PropertyName = "voters")]
public IList<User> Voters { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<User> |
Votes
How many votes does it have
Declaration
[JsonProperty(PropertyName = "votes")]
public long ? Votes { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int64> |