Class PageDetails
The page details properties include page size, total number pages, and so on.
Inheritance
Namespace: BoldSign.Model
Assembly: BoldSign.Api.dll
Syntax
public class PageDetails : object
Constructors
| Improve this Doc View SourcePageDetails(Int32, Int32, Int32, Int32, String, String)
Initializes a new instance of the PageDetails class.
Declaration
public PageDetails(int pageSize = null, int page = null, int totalRecordsCount = null, int totalPages = null, string sortedColumn = null, string sortDirection = null)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | pageSize | Gets or sets the page size.. |
System.Int32 | page | Gets or sets the page.. |
System.Int32 | totalRecordsCount | Gets or sets the total records count.. |
System.Int32 | totalPages | Gets or sets the total pages.. |
System.String | sortedColumn | Gets or sets the sorted column.. |
System.String | sortDirection | Gets or sets the sort direction.. |
Properties
| Improve this Doc View SourcePage
Gets or sets the page.
Declaration
public int Page { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | Gets or sets the page. |
PageSize
Gets or sets the page size.
Declaration
public int PageSize { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | Gets or sets the page size. |
SortDirection
Gets or sets the sort direction.
Declaration
public string SortDirection { get; set; }
Property Value
Type | Description |
---|---|
System.String | Gets or sets the sort direction. |
SortedColumn
Gets or sets the sorted column.
Declaration
public string SortedColumn { get; set; }
Property Value
Type | Description |
---|---|
System.String | Gets or sets the sorted column. |
TotalPages
Gets or sets the total page count.
Declaration
public int TotalPages { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | Gets or sets the total pages. |
TotalRecordsCount
Gets or sets the total record count.
Declaration
public int TotalRecordsCount { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | Gets or sets the total records count. |
Methods
| Improve this Doc View SourceToJson()
Returns the JSON string presentation of the object
Declaration
public virtual string ToJson()
Returns
Type | Description |
---|---|
System.String | JSON string presentation of the object |