Class Pageable
Container for pagable information in a request, also the base for the PageableResult
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 Pageable
Properties
| Improve this Doc View SourceIsLast
Is this the last page?
Declaration
[JsonProperty(PropertyName = "isLast")]
public bool IsLast { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
MaxResults
Max of the results (this is the limit)
Declaration
[JsonProperty(PropertyName = "maxResults")]
public int ? MaxResults { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |
StartAt
Where in the total this "page" is located
Declaration
[JsonProperty(PropertyName = "startAt")]
public int ? StartAt { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |