ContentSubscriberListOptions is defined in the Telligent.Evolution.Extensibility.Api.Version1 namespace of Telligent.Evolution.Platform.dll
Definition
class ContentSubscriberListOptions
{
bool? IncludeApplicationSubscriptions { get; set; }
int? PageIndex { get; set; }
int? PageSize { get; set; }
string SortBy { get; set; }
string SortOrder { get; set; }
Guid? TypeId { get; set; }
string UsernameSearch { get; set; }
}
Properties
| Name | Type | Description | Default | Options |
|---|---|---|---|---|
| IncludeApplicationSubscriptions | bool? | Whether to include users who are subscribed indirectly via the application or not. | ||
| PageIndex | int? | The page index to return based on page size. This value is 'zero' based and defaults to zero. | ||
| PageSize | int? | The total amount of articles to return per paged request. The default is 20, the maximum is 100. | ||
| SortBy | string | How the results will be sorted. | username | |
| SortOrder | string | The direction to sort the subscriptions by based on the current SortBy options. The options are 'ascending' or 'descending'. | ||
| TypeId | Guid? | The subscription type identifier. | ||
| UsernameSearch | string | The username to filter by. |