class ForumRepliesGetPageIndexOptions
{
string ForumReplyQueryType { get; set; }
bool? IncludeThreadStarter { get; set; }
int? PageSize { get; set; }
int? SortBy { get; set; }
bool? SortOrder { get; set; }
}
|
名称 |
类型 |
描述 |
默认值 |
选项 |
|
ForumReplyQueryType |
string |
Reply Type |
verified-answers, non-verified-answers, moderated |
|
|
IncludeThreadStarter |
bool? |
Used when determining whether to count the thread starter with the count of replies |
||
|
PageSize |
int? |
Specify the number of results to return per page. |
||
|
SortBy |
int? |
Sort by |
1 (UserId), 0 (Reply Date), 3 (Total Votes) |
|
|
SortOrder |
bool? |
Sort order |
true (descending), false (ascending) |