Class UserQueryFilter
Base class for queries on user fields.
Namespace: StylelabsStylelabs.MStylelabs.M.BaseQueryingFilters
Assembly: Stylelabs.M.Sdk.dll
Syntax
RequestResponse
public abstract class UserQueryFilter : QueryFilter
Properties
Id
Gets or sets id of the user to filter on.
Declaration
RequestResponse
public long? Id { get; set; }
Property Value
Type | Description |
---|---|
long |
Ids
Gets or sets ids of the users to filter on. If multiple values are specified, the filter will combine them using "OR" (essentially an IN-clause).
Declaration
RequestResponse
public IEnumerable<long> Ids { get; set; }
Property Value
Type | Description |
---|---|
IEnumerable<>long |
Operator
Declaration
RequestResponse
public ComparisonOperator Operator { get; set; }
Property Value
Type | Description |
---|---|
ComparisonOperator |
Username
Gets or sets the name of the user to filter on.
Declaration
RequestResponse
public string Username { get; set; }
Property Value
Type | Description |
---|---|
string |
Usernames
Gets or sets the names of the users to filter on. If multiple values are specified, the filter will combine them using "OR" (essentially an IN-clause).
Declaration
RequestResponse
public IEnumerable<string> Usernames { get; set; }
Property Value
Type | Description |
---|---|
IEnumerable<>string |