# Athenian::JIRAMetricsRequest ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **account** | **Integer** | Session account ID. | | | **date_from** | **Date** | Issues must be resolved after this date. | | | **date_to** | **Date** | Issues must be created before this date. | | | **_for** | [**Array<JIRAFilter>**](JIRAFilter.md) | Calculate metrics separately for each JIRA Filter in the list. Not compatible with other jira filters in the request: `priorities`, `types`, `labels_include`, `labels_exclude`, `epics`, `projects`. | [optional] | | **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. | [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. | | | **epics** | **Array<String>** | JIRA issues must be attached to any of the epic IDs from this list. | [optional] | | **with** | [**Array<JIRAFilterWith>**](JIRAFilterWith.md) | Groups of issue participants. The metrics will be calculated for each group. | [optional] | | **projects** | **Array<String>** | Issues must belong to these JIRA projects. | [optional] | | **metrics** | [**Array<JIRAMetricID>**](JIRAMetricID.md) | List of measured metrics. | | | **quantiles** | **Array<Float>** | Cut the distributions at certain quantiles. The default values are [0, 1] which means no cutting. | [optional] | | **granularities** | **Array<String>** | The splits of the specified time range. | | | **group_by_jira_label** | **Boolean** | Value indicating whether the metrics should be grouped by assigned JIRA issue label. | [optional] | ## Example ```ruby require 'athenian' instance = Athenian::JIRAMetricsRequest.new( account: null, date_from: null, date_to: null, _for: null, timezone: null, priorities: null, types: null, labels_include: null, labels_exclude: null, exclude_inactive: null, epics: null, with: null, projects: null, metrics: null, quantiles: [0,0.95], granularities: null, group_by_jira_label: null ) ```