# 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 ) ```