# Athenian::FilterJIRAStuff ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **account** | **Integer** | Session account ID. | | | **date_from** | **Date** | `null` disables the time filter boundary, thus everything is returned. `date_from` and `date_to` must be both either `null` or not `null`. | | | **date_to** | **Date** | `null` disables the time filter boundary, thus everything is returned. `date_from` and `date_to` must be both either `null` or not `null`. | | | **timezone** | **Integer** | Local time zone offset in minutes, used to adjust `date_from` and `date_to`. | [optional] | | **priorities** | **Array<String>** | Selected issue priorities. | [optional] | | **types** | **Array<String>** | Selected issue types. Ignored for epics. | [optional] | | **labels_include** | **Array<String>** | JIRA issues must contain at least one label from the list. Several labels may be concatenated by a comma `,` so that all of them are required. | [optional] | | **labels_exclude** | **Array<String>** | JIRA issues may not contain labels from this list. | [optional] | | **exclude_inactive** | **Boolean** | Value indicating whether issues with the last update older than `date_from` should be ignored. If `date_from` and `date_to` are `null`, does nothing. | | | **with** | [**FilterJIRAStuffWith**](FilterJIRAStuffWith.md) | | [optional] | | **projects** | **Array<String>** | Issues must belong to these JIRA projects. | [optional] | | **_return** | [**Array<JIRAFilterReturn>**](JIRAFilterReturn.md) | Specifies which items are required, an empty or missing array means everything. | [optional] | ## Example ```ruby require 'athenian' instance = Athenian::FilterJIRAStuff.new( account: null, date_from: null, date_to: null, timezone: null, priorities: null, types: null, labels_include: null, labels_exclude: null, exclude_inactive: null, with: null, projects: null, _return: null ) ```