Sha256: ac2e481f88364ee4c9e5b72443ea5c3f90054f36fd9bef694a2a10268dded5b3

Contents?: true

Size: 1.5 KB

Versions: 3

Compression:

Stored size: 1.5 KB

Contents

# Athenian::ForSetCodeChecksJira

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **epics** | **Array<String>** | JIRA issues must be included in the epics from the list. | [optional] |
| **labels_include** | **Array<String>** | Only issues having at least one label from the list will be included Several labels may be concatenated by a comma `,` so that all of them are required.  | [optional] |
| **labels_exclude** | **Array<String>** | Issues having one label from the list will be excluded. | [optional] |
| **issue_types** | **Array<String>** | Issues must have one of the given types, e.g. Bug, Task, Design Document, etc.  | [optional] |
| **priorities** | **Array<String>** | Issues must have a priority from the given list. | [optional] |
| **projects** | **Array<String>** | Issues must be contained in a project in the given project keys list. | [optional] |
| **status_categories** | [**Array<JIRAStatusCategory>**](JIRAStatusCategory.md) | The JIRA issues must have a status belonging to one of these categories. | [optional] |
| **unmapped** | **Boolean** | Select PRs that are not mapped to any JIRA issue. May not be specified with anything else. | [optional] |

## Example

```ruby
require 'athenian'

instance = Athenian::ForSetCodeChecksJira.new(
  epics: null,
  labels_include: null,
  labels_exclude: null,
  issue_types: null,
  priorities: null,
  projects: null,
  status_categories: null,
  unmapped: null
)
```

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
athenian-2.1.86 docs/ForSetCodeChecksJira.md
athenian-2.1.85 docs/ForSetCodeChecksJira.md
athenian-2.1.81 docs/ForSetCodeChecksJira.md