class WikiPagesListOptions
{
int? AuthorId { get; set; }
string ContentIds { get; set; }
int? GroupId { get; set; }
bool? IncludeDisabledPages { get; set; }
bool? IncludeSubGroupContent { get; set; }
int? PageIndex { get; set; }
int? PageSize { get; set; }
int? ParentPageId { get; set; }
string QueryType { get; set; }
bool? ShowHiddenInTableOfContents { get; set; }
string SortBy { get; set; }
string SortOrder { get; set; }
string Tags { get; set; }
}
|
名称 |
类型 |
描述 |
默认值 |
选项 |
|
AuthorId |
int? |
Author Id. Optional parameter |
||
|
ContentIds |
string |
Comma separated list of ContentIds. Used to limit to a specific set of wiki pages as well as sort order if SoryBy is set to ContentIdsOrder. Optional parameter |
||
|
GroupId |
int? |
Group Id. Optional parameter |
||
|
IncludeDisabledPages |
bool? |
Should disabled pages be included? Optional parameter |
||
|
IncludeSubGroupContent |
bool? |
Should sub group content be included? Optional parameter |
||
|
PageIndex |
int? |
Specify the page number of paged results to return. Zero-based index. Optional parameter |
0 |
|
|
PageSize |
int? |
Specify the number of results to return per page. Optional parameter |
20 |
|
|
ParentPageId |
int? |
Parent page Id. Optional parameter |
||
|
QueryType |
string |
Query type. Optional parameter |
All, New, Updated, AllByTags |
|
|
ShowHiddenInTableOfContents |
bool? |
ShowHiddenInTableOfContents. When true the list will only show items with their HiddenInTableOfContents flag set to true. When false they are excluded. Not specifying a value will show both. |
||
|
SortBy |
string |
Sort by |
Date |
Date, Score:SCORE_ID, LastUpdatedDate, ContentIdsOrder |
|
SortOrder |
string |
Sort order |
Descending |
Ascending, Descending |
|
Tags |
string |
Tags. Optional parameter |