• Articles
  • Api Documentation
Show / Hide Table of Contents
  • Dapplo.Jira
    • AgileExtensions
    • AttachmentExtensions
    • FilterExtensions
    • IJiraClient
    • IssueExtensions
    • JiraClient
    • JiraConfig
    • JiraException
    • ProjectExtensions
    • ServerExtensions
    • SessionExtensions
    • TimeSpanExtensions
    • UserExtensions
    • WorkExtensions
  • Dapplo.Jira.Domains
    • IAgileDomain
    • IAttachmentDomain
    • IFilterDomain
    • IIssueDomain
    • IJiraDomain
    • IProjectDomain
    • IServerDomain
    • ISessionDomain
    • IUserDomain
    • IWorkDomain
  • Dapplo.Jira.Entities
    • AgileIssue
    • AgileIssueFields
    • AllowedValue
    • Attachment
    • AttachmentContainer<T>
    • AvatarUrls
    • BaseId<TId>
    • BaseProperties<TId>
    • Board
    • BoardConfiguration
    • Column
    • ColumnConfig
    • Comment
    • Comments
    • Component
    • ComponentDigest
    • Configuration
    • Epic
    • EpicColor
    • Error
    • EstimationCustomFieldInfo
    • EstimationFieldInfo
    • Field
    • Filter
    • Issue
    • IssueBase
    • IssueFields
    • IssueType
    • IssueWithFields<TFields>
    • LoginInfo
    • Pageable
    • PageableResult
    • PossibleField
    • Priority
    • ProgressInfo
    • Project
    • ProjectCategory
    • ProjectDigest
    • RankingCustomFieldInfo
    • Resolution
    • Results<TResultType>
    • Schema
    • Search
    • SearchResult<TIssue>
    • ServerInfo
    • SharePermission
    • Sprint
    • Status
    • StatusCategory
    • Subscription
    • Subscriptions
    • TimeTracking
    • TimeTrackingConfiguration
    • Transition
    • Transitions
    • User
    • Version
    • Visibility
    • VoteInfo
    • Watches
    • Worklog
    • Worklogs
  • Dapplo.Jira.Enums
    • AdjustEstimate
    • AvatarSizes
    • BoardTypes
  • Dapplo.Jira.Json
    • CustomDateTimeOffsetConverter
  • Dapplo.Jira.Query
    • DatetimeClause
    • Fields
    • IDatetimeClause
    • IDatetimeClauseWithoutValue
    • IFinalClause
    • IIssueClause
    • IProjectClause
    • ISimpleValueClause
    • IssueClause
    • ITextClause
    • ITypeClause
    • IUserClause
    • IVersionClause
    • Operators
    • ProjectClause
    • SimpleValueClause
    • TextClause
    • TypeClause
    • UserClause
    • VersionClause
    • Where

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 Source

EndIndex

Where does this "page" end?

Declaration
[JsonProperty(PropertyName = "end-index")]
public long ? EndIndex { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>
| Improve this Doc View Source

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>
| Improve this Doc View Source

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>
| Improve this Doc View Source

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>
| Improve this Doc View Source

StartIndex

Where does this page start?

Declaration
[JsonProperty(PropertyName = "start-index")]
public long ? StartIndex { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>
  • Improve this Doc
  • View Source
Back to top Copyright © 2017 Dapplo