---
title: "Version interface"
canonical: "https://support.appfire.com/space/JMCF/465895840/Version%20interface"
format: markdown
---
> Macro (aura-html)

This document details the methods of the [Version](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/project/version/Version.html) interface you can use on a version, such as those returned by the [Getters](https://appfire.atlassian.net/wiki/spaces/JMCF/pages/465371580) when you access the Versions like Affects Version/s, Fix Version/s etc, Custom field of version picker etc.

| **Method** | **Return type** | **Returns** |
| --- | --- | --- |
| [getDescription](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/project/version/Version.html#getDescription())`()` | [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html) | The description of the version, returns null if the description is empty |
| [getId](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/project/version/Version.html#getId())`()` | [Long](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/Long.html) | The ID of the version |
| [getName](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/project/version/Version.html#getName())`()` | [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html) | The Name of the version |
| [getProjectId](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/project/version/Version.html#getProjectId())`()` | [Long](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/Long.html) | Returns the ID of the project that this version belongs to. |
| [getProjectObject](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/project/version/Version.html#getProjectObject())`()` | [Project](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/project/Project.html) | Returns project this version relates to. |
| [getReleaseDate](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/project/version/Version.html#getReleaseDate())`()` | [Date](http://download.oracle.com/javase/6/docs/api/index.html?java/util/Date.html) | The release date of the version |
| [getSequence](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/project/version/Version.html#getSequence())`()` | [Long](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/Long.html) | The sequence at which the version is present |
| [getStartDate](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/project/version/Version.html#getStartDate())`()` | [Date](http://download.oracle.com/javase/6/docs/api/index.html?java/util/Date.html) | The start date of the version |
| [isArchived](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/project/version/Version.html#isArchived())`()` | `boolean` | True if the version is archived |
| [isReleased](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/project/version/Version.html#isReleased())`()` | `boolean` | True if the version is released |