Class PagingInformation
Contains some basic paging information
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.Confluence.Entities
Assembly: Dapplo.Confluence.dll
Syntax
public class PagingInformation
Properties
| Improve this Doc View SourceLimit
The result is limited by
Declaration
[JsonProperty("limit", DefaultValueHandling = DefaultValueHandling.Ignore)]
public int? Limit { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |
Start
The start of the elements, this is used for paging
Declaration
[JsonProperty("start", DefaultValueHandling = DefaultValueHandling.Ignore)]
public int? Start { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |