Class Subscriptions
Subscriptions information (looks more or less pagable, although I don't know how to specify the page size etc)
Inheritance
System.Object
Subscriptions
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 Subscriptions
Properties
| Improve this Doc View SourceEndIndex
Where does this "page" end?
Declaration
[JsonProperty(PropertyName = "end-index")]
public long ? EndIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int64> |
Items
The actual list of subscriptions
Declaration
[JsonProperty(PropertyName = "items")]
public IList<Subscription> Items { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<Subscription> |
MaxResults
How many results are given back
Declaration
[JsonProperty(PropertyName = "max-results")]
public long ? MaxResults { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int64> |
Size
How many subscritions are there? This could be more than the amount of items, not only due to rights (maybe the subscriber is not visible) but also as the value is not expanded.
Declaration
[JsonProperty(PropertyName = "size")]
public long ? Size { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int64> |
StartIndex
Where does this page start?
Declaration
[JsonProperty(PropertyName = "start-index")]
public long ? StartIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int64> |