ForumRepliesListOptions is defined in the Telligent.Evolution.Extensibility.Api.Version1 namespace of Telligent.Evolution.Forums.dll
Definition
class ForumRepliesListOptions
{
int? AuthorId { get; set; }
string ContentIds { get; set; }
int? ForumId { get; set; }
string ForumReplyQueryType { get; set; }
int? GroupId { get; set; }
bool? IncludeDiscussionThreads { get; set; }
bool? IncludeQuestionThreads { get; set; }
bool? IncludeSubGroups { get; set; }
bool? IncludeThreadStarter { get; set; }
int? PageIndex { get; set; }
int? PageSize { get; set; }
int? ParentReplyId { get; set; }
string SortBy { get; set; }
string SortOrder { get; set; }
}
Properties
| Name | Type | Description | Default | Options |
|---|---|---|---|---|
| AuthorId | int? | Id of the author who created the reply. If not passing a ThreadId, AuthorId is required. | ||
| ContentIds | string | Comma separated list of ContentIds. Used to limit to a specific set of replies as well as sort order if SoryBy is set to ContentIdsOrder | ||
| ForumId | int? | Id of the parent forum | ||
| ForumReplyQueryType | string | Reply Type | moderated, non-verified-answers, verified-answers | |
| GroupId | int? | Id of the parent group | ||
| IncludeDiscussionThreads | bool? | When false, excludes replies of discussion type threads. | ||
| IncludeQuestionThreads | bool? | When false, excludes replies of question type threads. | ||
| IncludeSubGroups | bool? | Used when getting forum replies for a group to specify whether or not to include subgroups. | ||
| IncludeThreadStarter | bool? | When true, includes the original thread post in the set of replies | ||
| PageIndex | int? | Specify the page number of paged results to return. Zero-based index. | ||
| PageSize | int? | Specify the number of results to return per page. | ||
| ParentReplyId | int? | Parent Reply Id | ||
| SortBy | string | Sort by | ContentIdsOrder, PostDate, Score:SCORE_ID, SortOrder, TotalVotes, UserID | |
| SortOrder | string | Sort order | Ascending, Descending |