Sha256: 8ac0f111bb78caaf05fa3a6d2764d5dcdce898d65ddd73a706d85bae427b807f
Contents?: true
Size: 1.27 KB
Versions: 3
Compression:
Stored size: 1.27 KB
Contents
# Athenian::FilterJIRACommon ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **account** | **Integer** | Session account ID. | | | **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. | | ## Example ```ruby require 'athenian' instance = Athenian::FilterJIRACommon.new( account: null, timezone: null, priorities: null, types: null, labels_include: null, labels_exclude: null, exclude_inactive: null ) ```
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
athenian-2.1.86 | docs/FilterJIRACommon.md |
athenian-2.1.85 | docs/FilterJIRACommon.md |
athenian-2.1.81 | docs/FilterJIRACommon.md |