• Articles
  • Api Documentation
Show / Hide Table of Contents
  • Dapplo.Jira
    • AgileExtensions
    • AttachmentExtensions
    • FilterExtensions
    • IJiraClient
    • IssueExtensions
    • JiraClient
    • JiraConfig
    • JiraException
    • ProjectExtensions
    • ServerExtensions
    • SessionExtensions
    • TimeSpanExtensions
    • UserExtensions
    • WorkExtensions
  • Dapplo.Jira.Domains
    • IAgileDomain
    • IAttachmentDomain
    • IFilterDomain
    • IIssueDomain
    • IJiraDomain
    • IProjectDomain
    • IServerDomain
    • ISessionDomain
    • IUserDomain
    • IWorkDomain
  • Dapplo.Jira.Entities
    • AgileIssue
    • AgileIssueFields
    • AllowedValue
    • Attachment
    • AttachmentContainer<T>
    • AvatarUrls
    • BaseId<TId>
    • BaseProperties<TId>
    • Board
    • BoardConfiguration
    • Column
    • ColumnConfig
    • Comment
    • Comments
    • Component
    • ComponentDigest
    • Configuration
    • Epic
    • EpicColor
    • Error
    • EstimationCustomFieldInfo
    • EstimationFieldInfo
    • Field
    • Filter
    • Issue
    • IssueBase
    • IssueFields
    • IssueType
    • IssueWithFields<TFields>
    • LoginInfo
    • Pageable
    • PageableResult
    • PossibleField
    • Priority
    • ProgressInfo
    • Project
    • ProjectCategory
    • ProjectDigest
    • RankingCustomFieldInfo
    • Resolution
    • Results<TResultType>
    • Schema
    • Search
    • SearchResult<TIssue>
    • ServerInfo
    • SharePermission
    • Sprint
    • Status
    • StatusCategory
    • Subscription
    • Subscriptions
    • TimeTracking
    • TimeTrackingConfiguration
    • Transition
    • Transitions
    • User
    • Version
    • Visibility
    • VoteInfo
    • Watches
    • Worklog
    • Worklogs
  • Dapplo.Jira.Enums
    • AdjustEstimate
    • AvatarSizes
    • BoardTypes
  • Dapplo.Jira.Json
    • CustomDateTimeOffsetConverter
  • Dapplo.Jira.Query
    • DatetimeClause
    • Fields
    • IDatetimeClause
    • IDatetimeClauseWithoutValue
    • IFinalClause
    • IIssueClause
    • IProjectClause
    • ISimpleValueClause
    • IssueClause
    • ITextClause
    • ITypeClause
    • IUserClause
    • IVersionClause
    • Operators
    • ProjectClause
    • SimpleValueClause
    • TextClause
    • TypeClause
    • UserClause
    • VersionClause
    • Where

Class Filter

Filter information

Inheritance
System.Object
BaseId<System.Int64>
BaseProperties<System.Int64>
Filter
Inherited Members
BaseProperties<Int64>.Self
BaseId<Int64>.Id
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 Source

Filter()

Default constructor

Declaration
public Filter()
| Improve this Doc View Source

Filter(IFinalClause)

Constructor with a JQL clause

Declaration
public Filter(IFinalClause jql)
Parameters
Type Name Description
IFinalClause jql

IFinalClause

| Improve this Doc View Source

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 Source

Description

Description of the filter

Declaration
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

IsFavorite

Is the filter a favorite?

Declaration
[JsonProperty(PropertyName = "favorite")]
public bool IsFavorite { get; set; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

Jql

The JQL (query) for the filter

Declaration
[JsonProperty(PropertyName = "jql")]
public string Jql { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Name

Name for the filter

Declaration
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Owner

User who owns the filter

Declaration
[JsonProperty(PropertyName = "owner")]
public User Owner { get; set; }
Property Value
Type Description
User
| Improve this Doc View Source

SearchUri

The URL to show the search results

Declaration
[JsonProperty(PropertyName = "searchUrl")]
public Uri SearchUri { get; set; }
Property Value
Type Description
System.Uri
| Improve this Doc View Source

SharePermissions

The permissions for sharing

Declaration
[JsonProperty(PropertyName = "sharePermissions")]
public IList<SharePermission> SharePermissions { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<SharePermission>
| Improve this Doc View Source

Subscriptions

The subscriptions for this filter

Declaration
[JsonProperty(PropertyName = "subscriptions")]
public Subscriptions Subscriptions { get; set; }
Property Value
Type Description
Subscriptions
| Improve this Doc View Source

ViewUri

The url to view the filter

Declaration
[JsonProperty(PropertyName = "viewUrl")]
public Uri ViewUri { get; set; }
Property Value
Type Description
System.Uri
  • Improve this Doc
  • View Source
Back to top Copyright © 2017 Dapplo