Sha256: ad556664addcbc716011925f737eb251dbcd6ae79100814f565b5421e2a2598f

Contents?: true

Size: 1 KB

Versions: 3

Compression:

Stored size: 1 KB

Contents

# Athenian::JIRAProject

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **name** | **String** | Long name of the project. |  |
| **key** | **String** | Short prefix of the project. |  |
| **id** | **String** | Internal project identifier that corresponds to `project` in `/filter/jira`. Note: this is a string even though this looks like an integer. That's what JIRA API sends us.  |  |
| **avatar_url** | **String** | Avatar URL of the project. |  |
| **enabled** | **Boolean** | Indicates whether this project is enabled for analysis. |  |
| **issues_count** | **Integer** | Total number of issues in the project. |  |
| **last_update** | **Time** | Timestamp of the last event in the project. Can be `null` if there are no issues.  |  |

## Example

```ruby
require 'athenian'

instance = Athenian::JIRAProject.new(
  name: null,
  key: null,
  id: null,
  avatar_url: null,
  enabled: null,
  issues_count: null,
  last_update: null
)
```

Version data entries

3 entries across 3 versions & 1 rubygems

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