Class Filter
Filter information
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace:Dapplo.Jira.Entities
Assembly:Dapplo.Jira.dll
Syntax
[JsonObject]
public class Filter : BaseProperties<long>
Constructors
| Improve this Doc View SourceFilter()
Default constructor
Declaration
public Filter()
Filter(IFinalClause)
Constructor with a JQL clause
Declaration
public Filter(IFinalClause jql)
Parameters
Type | Name | Description |
---|---|---|
IFinalClause | jql | IFinalClause |
Filter(String, IFinalClause)
Constructor with a JQL clause and name
Declaration
public Filter(string name, IFinalClause jql)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | Name |
IFinalClause | jql | IFinalClause |
Properties
| Improve this Doc View SourceDescription
Description of the filter
Declaration
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
Property Value
Type | Description |
---|---|
System.String |
IsFavorite
Is the filter a favorite?
Declaration
[JsonProperty(PropertyName = "favorite")]
public bool IsFavorite { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Jql
The JQL (query) for the filter
Declaration
[JsonProperty(PropertyName = "jql")]
public string Jql { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Name
Name for the filter
Declaration
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Owner
User who owns the filter
Declaration
[JsonProperty(PropertyName = "owner")]
public User Owner { get; set; }
Property Value
Type | Description |
---|---|
User |
SearchUri
The URL to show the search results
Declaration
[JsonProperty(PropertyName = "searchUrl")]
public Uri SearchUri { get; set; }
Property Value
Type | Description |
---|---|
System.Uri |
SharePermissions
The permissions for sharing
Declaration
[JsonProperty(PropertyName = "sharePermissions")]
public IList<SharePermission> SharePermissions { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<SharePermission> |
Subscriptions
The subscriptions for this filter
Declaration
[JsonProperty(PropertyName = "subscriptions")]
public Subscriptions Subscriptions { get; set; }
Property Value
Type | Description |
---|---|
Subscriptions |
ViewUri
The url to view the filter
Declaration
[JsonProperty(PropertyName = "viewUrl")]
public Uri ViewUri { get; set; }
Property Value
Type | Description |
---|---|
System.Uri |