Class NewsletterSubscriberFilter
A filter used to search for newsletter subscribers.
Inherited Members
Namespace: DataWeb.Newsletter
Assembly: DataWeb.Core.dll
Syntax
public class NewsletterSubscriberFilter
Properties
Count
Gets or sets the number of subscribers to retrieve.
Declaration
public int Count { get; set; }
Property Value
Type | Description |
---|---|
int |
Countries
Gets or sets a list of the subscriber's countries.
Declaration
public List<string> Countries { get; set; }
Property Value
Type | Description |
---|---|
List<string> |
Cultures
Gets or sets a list of the subscriber's cultures.
Declaration
public List<string> Cultures { get; set; }
Property Value
Type | Description |
---|---|
List<string> |
Gets or sets the subscriber's email.
Declaration
public string Email { get; set; }
Property Value
Type | Description |
---|---|
string |
Groups
Gets or sets a list of the subscriber's groups.
Declaration
public List<string> Groups { get; set; }
Property Value
Type | Description |
---|---|
List<string> |
Id
Gets or sets the unique identifier.
Declaration
public string Id { get; set; }
Property Value
Type | Description |
---|---|
string |
Interests
Gets or sets a list of the subscriber's interests.
Declaration
public List<string> Interests { get; set; }
Property Value
Type | Description |
---|---|
List<string> |
IsDeletedIncluded
Gets all the subscribers, deleted included.
Declaration
public bool IsDeletedIncluded { get; set; }
Property Value
Type | Description |
---|---|
bool |
IsPagination
Gets or sets a value indicating whether pagination is enabled for the search results.
Declaration
public bool IsPagination { get; set; }
Property Value
Type | Description |
---|---|
bool |
PageIndex
Gets or sets the index of the page of search results to retrieve.
Declaration
public long PageIndex { get; set; }
Property Value
Type | Description |
---|---|
long |
PageSize
Gets or sets the number of subscribers to include in each page of search results.
Declaration
public int PageSize { get; set; }
Property Value
Type | Description |
---|---|
int |
SearchText
Gets or sets the search text used to filter subscribers.
Declaration
public string SearchText { get; set; }
Property Value
Type | Description |
---|---|
string |
Status
Gets or sets the subscriber's status.
Declaration
public SubscriberStatus? Status { get; set; }
Property Value
Type | Description |
---|---|
SubscriberStatus? |
SubscriptionDateEnd
Gets or sets the end date for the subscriber's subscription.
Declaration
public DateTimeOffset? SubscriptionDateEnd { get; set; }
Property Value
Type | Description |
---|---|
DateTimeOffset? |
SubscriptionDateStart
Gets or sets the start date for the subscriber's subscription.
Declaration
public DateTimeOffset? SubscriptionDateStart { get; set; }
Property Value
Type | Description |
---|---|
DateTimeOffset? |
Zones
Gets or sets a list of the subscriber's zones.
Declaration
public List<string> Zones { get; set; }
Property Value
Type | Description |
---|---|
List<string> |