Class Watches
Container for the Watches information.
To get the details, issue/
Inheritance
System.Object
Watches
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 Watches
Properties
| Improve this Doc View SourceIsWatching
Is "current user" watching?
Declaration
[JsonProperty(PropertyName = "isWatching")]
public bool IsWatching { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Self
Link to the watch info itself
Declaration
[JsonProperty(PropertyName = "self")]
public Uri Self { get; set; }
Property Value
Type | Description |
---|---|
System.Uri |
WatchCount
Amount of users watching
Declaration
[JsonProperty(PropertyName = "watchCount")]
public int ? WatchCount { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |
Watchers
The list of users who are watching
Declaration
[JsonProperty(PropertyName = "watchers")]
public IList<User> Watchers { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<User> |