---
title: "Standard JIRA fields"
canonical: "https://support.appfire.com/space/JMWE/461964285/Standard%20JIRA%20fields"
format: markdown
---
> Macro (aura-html)

This page explains how to access the value of Standard Jira fields using Groovy. You can access them using [getters](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734/Issue+Interface#Getters) of the Issue interface. To understand how to *write* values into the writable Standard Jira fields see [Raw value/text input for fields](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461406738) and [Groovy expression input for fields](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461767383).

<span style="color: #000000">**In this page:**</span>


> ℹ️ #### Affects Version/s
> ℹ️ 
> ℹ️ - **Field Name: **Affects Version/s
> ℹ️ - **Field ID: **`versions`
> ℹ️ - **Description**: The Affects Version/s field is a collection of version objects. Each object represents a single version.
> ℹ️ - **Accessing the *****Affects Version/s***** field: **You can access the *Affects Version/s* field using any of the following getters of the Issue interface:
> ℹ️   - [get("versions") ](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)[or](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)[ get("Affects Version/s")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)` `that returns a [Collection](http://docs.oracle.com/javase/7/docs/api/java/util/Collection.html)`<`[Version](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461538137)`>`
> ℹ️     - **Example:** Name of the first Affects Version/s
> ℹ️   - [getAsString("versions")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)[ or ](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)[getAsString("Affects Version/s")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562) that returns a [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html)` `with comma separated version *names*:
> ℹ️     - **Example:** Join all the Affects Version/s separated by a comma:
> ℹ️   - [getAffectedVersions()](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734/Issue+Interface#Methods native to JIRA) that returns a [Collection](http://docs.oracle.com/javase/7/docs/api/java/util/Collection.html)`<`[Version](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461538137)`>`
> ℹ️     - **Example: **Join all the Affects Version/s separated by a comma:


> ℹ️ #### Assignee
> ℹ️ 
> ℹ️ - **Field name: **`Assignee`
> ℹ️ - **Field ID**`: ``assignee`
> ℹ️ - **Description**: The Assignee field is an object that represents the user who this issue is assigned to.
> ℹ️ - **Accessing the *****Assignee***** field**: You can access the *Assignee*field using any of the following getters of the Issue interface:
> ℹ️   - [get("assignee") ](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)[or](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)[ get("Assignee")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)` `that returns an [ApplicationUser](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461472599)
> ℹ️     - **Example: ***Username* of the user the issue is assigned to:
> ℹ️ 
> ℹ️   - [getAsString("Assignee") or getAsString("assignee")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562) that returns a [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html)` `representing the username:
> ℹ️     - **Example: ***Username* of the user the issue is assigned to:
> ℹ️ 
> ℹ️   - [getAssigneeUser](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734/Issue+Interface#Methods native to JIRA)[()](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734/Issue+Interface#Methods native to JIRA)` `that returns an [ApplicationUser](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461472599)
> ℹ️     - **Example:** *EmailAddress *of the user the issue is assigned to:


> ℹ️ #### Attachments
> ℹ️ 
> ℹ️ - **Field name: **`Attachments`
> ℹ️ - **Field ID****: **`attachment`
> ℹ️ - **Description**: Attachment is a collection of objects. Each object represents a single attachment.
> ℹ️ - **Accessing the *****Attachments *****field**: You can access the *Attachments* field using any of the following getters of the Issue interface:
> ℹ️   - `get("attachment") or get("Attachments") `that returns a [Collection](http://docs.oracle.com/javase/7/docs/api/java/util/Collection.html)`<`[Attachment](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/462095169)`>`
> ℹ️     - **Example:** Size of the last attachment added to the issue:
> ℹ️   - [getAsString("Attachments") or getAsString("attachment")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)` `that returns the comma-separated names of the attachments`:`
> ℹ️     - **Example:** Names of the attachments
> ℹ️       
> ℹ️   - [getAttachments()](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734/Issue+Interface#Methods native to JIRA) that returns a [Collection](http://docs.oracle.com/javase/7/docs/api/java/util/Collection.html)`<`[Attachment](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/462095169)`>`
> ℹ️     - **Example:** Name of the Author of the first attachment:

> ℹ️ #### Comments
> ℹ️ 
> ℹ️ - **Field name: **`Comment`
> ℹ️ - **Field ID: **`comment`
> ℹ️ - **Description**: The Comments field is a collection of objects. Each object represents one comment.
> ℹ️ - **Accessing the *****Comments***** field**: You can access the *Comments field **using any of the following getters of the Issue interface:*
> ℹ️   - [get("comment") or get("Comments")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)` `that returns a [List](http://docs.oracle.com/javase/7/docs/api/java/util/List.html)`<`[Comment](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461570779)`>`
> ℹ️     - **Example:** Number of comments on the issue:
> ℹ️     - **Example:** Last Comment body:
> ℹ️     - **Example:** Name of the author of the first comment on the issue:
> ℹ️   - [getAsString("Comments") or getAsString("comment")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562) that returns a` `[String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html)` `with comma separated bodies of the comments`:`
> ℹ️     - **Example:** All the comments on the issue separated by a comma:


> ℹ️ #### Component/s
> ℹ️ 
> ℹ️ - **Field name: **`Component/s`
> ℹ️ - **Field ID: **`components`
> ℹ️ - **Description**: The Component/s field is a collection of objects. Each object represents one component.
> ℹ️ - **Accessing the *****Components***** field**: You can access the *Components* field using any of the following getters of the Issue interface:
> ℹ️   - [get("components") or get("Component/s")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)` `that returns a [Collection](http://docs.oracle.com/javase/7/docs/api/java/util/Collection.html)`<`[ProjectComponent](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/462062256)>
> ℹ️     - **Example:** First component name:
> ℹ️   - [getAsString("Component/s") or getAsString("components")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562) that returns a [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html)` `with comma separated component names:
> ℹ️     - **Examples:** All the components of the issue
> ℹ️       
> ℹ️   - [getComponentObjects](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734/Issue+Interface#Methods native to JIRA)[()](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734/Issue+Interface#Methods native to JIRA) that returns a [Collection](http://docs.oracle.com/javase/7/docs/api/java/util/Collection.html)`<`[ProjectComponent](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/462062256)>
> ℹ️     - **Example:** Last component description:

> ℹ️ #### <span style="color: #000000">Created</span>
> ℹ️ 
> ℹ️ - **Field name: **`Created`
> ℹ️ - **Field ID:**` created`
> ℹ️ - **Description**: The Created field is a [Timestamp](http://docs.oracle.com/javase/7/docs/api/java/sql/Timestamp.html) that represents the date-time of issue creation.
> ℹ️ - **Accessing the *****Created *****field**: You can access the *Created *field using any of the following getters of the Issue interface:
> ℹ️   - [get("created") or get("Created")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)` `that returns a [Timestamp](http://docs.oracle.com/javase/7/docs/api/java/sql/Timestamp.html)
> ℹ️     - **Example: **Created date of the issue:
> ℹ️   - [getAsString("Created") or getAsString("created"](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)`) `that returns a [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html) representing the issue creation date/time
> ℹ️     - **Example:** Issue creation date
> ℹ️       
> ℹ️   - [getCreated](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734/Issue+Interface#Methods native to JIRA)[()](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734/Issue+Interface#Methods native to JIRA)` `that returns a [Timestamp](http://docs.oracle.com/javase/7/docs/api/java/sql/Timestamp.html):
> ℹ️     - **Example:** Format the created date:
> ℹ️ 
> ℹ️ To manipulate the date see [here](http://docs.groovy-lang.org/latest/html/groovy-jdk/java/util/Date.html)

> ℹ️ #### <span style="color: #000000">Creator</span>
> ℹ️ 
> ℹ️ - **Field name: **`Creator`
> ℹ️ - **Field ID: **`creator`
> ℹ️ - **Description**: The Creator field is an object that represents the user who created this issue.
> ℹ️ - **Accessing the *****Creator *****field**: You can access the *Creator *field using any of the following getters of the Issue interface:
> ℹ️   - [get("creator") or get("Creator")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)` `that returns an [ApplicationUser](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461472599)
> ℹ️     - **Example: ***Usern**ame* of the Creator of the issue:
> ℹ️   - [getAsString("Creator") or getAsString("creator")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)` `that returns the username in` `[String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html)`:`` `
> ℹ️     - **Example:** *Usern**ame* of the Creator of the issue:
> ℹ️       
> ℹ️   - [getCreator()](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734/Issue+Interface#Methods native to JIRA)` that returns an `[ApplicationUser](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461472599)
> ℹ️     - **Example: ***Displayname* of the creator of the issue:

> ℹ️ #### Description
> ℹ️ 
> ℹ️ - **Field name: **`Description`
> ℹ️ - **Field ID: **`description`
> ℹ️ - **Description**: The Description field is a string representation of a multi-line text describing the issue.
> ℹ️ - **Accessing the *****Description *****field**: You can access the *Description* field using any of the following getters of the Issue interface:
> ℹ️   - [get("description") or get("Description")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)` `that returns a [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html)
> ℹ️     - **Example: **Description of the issue:
> ℹ️   - [getAsString("Description") or getAsString("description")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562) that returns the Description in [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html)
> ℹ️     - **Example:** Description of the issue:
> ℹ️   - [getDescription()](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734/Issue+Interface#Methods native to JIRA) that returns a [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html)`:`
> ℹ️     - **Example:** Description of the issue:

> ℹ️ #### Due Date
> ℹ️ 
> ℹ️ - **Field name: **`Due Date`
> ℹ️ - **Field ID: **`duedate`
> ℹ️ - **Description**: The Due Date field is [Timestamp](http://docs.oracle.com/javase/7/docs/api/java/sql/Timestamp.html) representing the due date of the issue.
> ℹ️ - **Accessing the *****Due date *****field**: You can access the *Due date *field using any of the following getters of the Issue interface:
> ℹ️   - [get("duedate") or get("Due Date")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)` `that returns a [Timestamp](http://docs.oracle.com/javase/7/docs/api/java/sql/Timestamp.html):
> ℹ️     - **Example:** Due date of the issue:
> ℹ️   - [getAsString("duedate") or getAsString("Due Date")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562) that returns a [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html) representing the Due date
> ℹ️     - **Example:** Due date of the issue:
> ℹ️       
> ℹ️   - [getDueDate](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734/Issue+Interface#Methods native to JIRA)[()](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734/Issue+Interface#Methods native to JIRA)` `that returns a [Timestamp](http://docs.oracle.com/javase/7/docs/api/java/sql/Timestamp.html):
> ℹ️     - **Example:** Duedate plus five days. Note: to find out more about date manipulation in Groovy, see [here](http://docs.groovy-lang.org/latest/html/groovy-jdk/java/util/Date.html).

> ℹ️ #### Environment
> ℹ️ 
> ℹ️ - **Field name: **`Environment`
> ℹ️ - **Field ID: **`environment`
> ℹ️ - **Description**: The Environment field is a string representation of a multi-line text describing the environment of the issue.
> ℹ️ - **Accessing the *****Environment *****field**: You can access the *Environment* field using any of the following getters of the Issue interface:
> ℹ️   - [get("environment") or get("Environment")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)` `that returns a [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html):
> ℹ️     - **Example:** Environment of the issue
> ℹ️   - [getAsString("Environment") or getAsString("environment")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562) that returns a [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html)` `representing the Environment:
> ℹ️     - **Example:** Environment of the issue
> ℹ️   - [getEnvironment](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734/Issue+Interface#Methods native to JIRA)[()](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734/Issue+Interface#Methods native to JIRA)` `that returns a [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html):
> ℹ️     - **Example:** Environment of the issue

> ℹ️ #### Epic
> ℹ️ 
> ℹ️ - **Field name: **`Epic`
> ℹ️ - **Field ID: ***none*
> ℹ️ - **Description**: Represents the issue's in the current Epic.
> ℹ️ - **Accessing the *****Epic *****of an issue: **You can access the Epic of an issue using the [getEpic()](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734/Issue+Interface#getEpic())` `that returns an` `[Issue](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734)
> ℹ️   - **Example:** Get the Epic of the current issue
> ℹ️   - **Example:** Get the status of the current issue's Epic
> ℹ️   - **Example:** Get the priority of the current issue's Epic

> ℹ️ #### FixVersion/s
> ℹ️ 
> ℹ️ - **Field name: **Fix Version/s
> ℹ️ - **Field ID: **`fixVersions`
> ℹ️ - **Description**: The Fix Version/s field is a collection of objects. Each object represents a single version.
> ℹ️ - **Accessing the Fix***** Version/s***** field**: You can access the *Fix Version/s* field using any of the following getters of the Issue interface:
> ℹ️   - [get("fixVersions") or get("Fix Version/s")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)` `that returns a [Collection](http://docs.oracle.com/javase/7/docs/api/java/util/Collection.html)`<`[Version](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461538137)`>`
> ℹ️     - **Example:** First Fix Version/s name:
> ℹ️   - [getAsString("Fix Version/s") or ](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)[getAsString("fixversions")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562) that returns a  [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html)` `with comma separated Fix Version/s names:
> ℹ️     - **Example:** Fix Version/s of the issue
> ℹ️   - [getFixVersions](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734/Issue+Interface#Methods native to JIRA)[()](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734/Issue+Interface#Methods native to JIRA) that returns a [Collection](http://docs.oracle.com/javase/7/docs/api/java/util/Collection.html)`<`[Version](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461538137)`>`
> ℹ️     - **Example:** Join <span style="color: #000000">the </span>*names*<span style="color: #000000"> of the Fix Version/s, separated by commas: </span>

> ℹ️ #### **ID**
> ℹ️ 
> ℹ️ - **Field name: **`ID`
> ℹ️ - **Field ID: ***none*
> ℹ️ - **Description**: The ID of the issue.
> ℹ️ - **Accessing the *****ID *****of an issue: **You can access the *ID* of the issue using [getId()](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734) that returns ID of the issue in a [Long](http://docs.oracle.com/javase/7/docs/api/java/lang/Long.html) format.
> ℹ️   - **Example: **ID of the issue


> ℹ️ #### Issue links
> ℹ️ 
> ℹ️ - **Field name:** `Issue Links`
> ℹ️ - **Field ID:**` issuelinks`
> ℹ️ - **Description**: Issue links is a list of objects. Each object represents one issue link.
> ℹ️ - **Accessing the *****Issue links *****field**: You can access the *Issue links *field using any of the following getters of the Issue interface:
> ℹ️   - [get("issuelinks") or get("Linked Issues")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)` `that returns a [List](http://docs.oracle.com/javase/7/docs/api/java/util/List.html)`<`[IssueLink](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461996485)`>`
> ℹ️     - **Example:** Get the issue links of the current issue
> ℹ️   - [getInwardIssueLinks()](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734) that returns a [List](http://docs.oracle.com/javase/7/docs/api/java/util/List.html)`<`[IssueLink](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461996485)`>`
> ℹ️     - **Example:** Number of inward linked issues for the current issue
> ℹ️   - [getOutwardIssueLinks()](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734) that returns a [List](http://docs.oracle.com/javase/7/docs/api/java/util/List.html)`<`[IssueLink](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461996485)`>`
> ℹ️     - **Example: **Destination issue of the first issue link to the current issue
> ℹ️   - [getLinkedIssues(String linkName)](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734)` `that returns a` `[List](http://docs.oracle.com/javase/7/docs/api/java/util/List.html)`<`[Issue](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734)`>`
> ℹ️     - **Example:** Get the issues linked to the current issue with the 'blocks' link type
> ℹ️     - **Example:** Get the status of all issues linked to the current issue with the 'is blocked by' link type

> ℹ️ #### Issue type
> ℹ️ 
> ℹ️ - **Field name: **`Issue Type`
> ℹ️ - **Field ID:**` issuetype`
> ℹ️ - **Description**: The Issue Type field is an object describing the issue type.
> ℹ️ - **Accessing the Issue type field**: You can access the *Issue type* field using any of the following getters of the Issue interface:
> ℹ️   - [get("issuetype") or get("Issue Type")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)` `that returns an [Issuetype](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461407031)
> ℹ️     - **Example:** Name of the issue type:
> ℹ️   - [getAsString("Issue Type") or getAsString("issuetype")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562) that returns a [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html) representing the name of the Issue Type.
> ℹ️     - **Example:** Name of the issue type:
> ℹ️       
> ℹ️   - [getIssueTypeObject](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734/Issue+Interface#Methods native to JIRA)[()](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734/Issue+Interface#Methods native to JIRA) that returns an [Issuetype](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461407031)
> ℹ️     - **Example: **Set a text field to `"This issue is a sub-task"` if the issue is a sub-task:

> ℹ️ #### Key
> ℹ️ 
> ℹ️ - **Field name: **`Key`
> ℹ️ - **Field ID:**` issuekey`
> ℹ️ - **Description**: The Key is a string that represents the key of the issue.
> ℹ️ - **Accessing the Key of the issue**: You can access the *Key* of the issue using any of the following getters of the Issue interface:
> ℹ️   - [get("issuekey") or get("Key")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)` `that returns a [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html)
> ℹ️     - **Example:** Access the key of the current issue:
> ℹ️   - [getAsString("Key") or getAsString("issuekey")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)` `that returns a [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html)` `representing the key of the issue:
> ℹ️     - **Example:** Access the key of the current issue:
> ℹ️       
> ℹ️   - [getKey](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734/Issue+Interface#Methods native to JIRA)[()](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734/Issue+Interface#Methods native to JIRA) that returns a [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html)
> ℹ️     - **Example:** Access the key of the issue's Epic:

> ℹ️ #### Labels
> ℹ️ 
> ℹ️ - **Field name: **`Labels`
> ℹ️ - **Field ID:**` labels`
> ℹ️ - **Description**: Labels is a Set of labels.
> ℹ️ - **Accessing the Labels field**: You can access the *Labels* field using any of the following getters of the Issue interface:
> ℹ️   - [get("labels") or get("Labels")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)` `that returns a [Set](http://docs.oracle.com/javase/7/docs/api/java/util/Set.html)`<`[Label](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/issue/label/Label.html)`>`
> ℹ️     - **Example:** Get the first label of the issue:
> ℹ️   - [getAsString("Labels") or ](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)[getAsString("labels")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562) that returns a [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html)` `with comma separated label names:
> ℹ️     - **Examples:** Labels of the issue
> ℹ️       
> ℹ️   - [getLabels](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734/Issue+Interface#Methods native to JIRA)[()](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734/Issue+Interface#Methods native to JIRA) that returns a [Set](http://docs.oracle.com/javase/7/docs/api/java/util/Set.html)`<`[Label](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/issue/label/Label.html)`>`
> ℹ️     - **Example:** Get the last label of the issue
> ℹ️     - **Example:** All the labels of the issue separated by a comma:


> ℹ️ #### Last Viewed
> ℹ️ 
> ℹ️ - **Field Name: **`Last Viewed`
> ℹ️ - **Field ID**: lastViewed
> ℹ️ - **Description**: The Last Viewed field is a string representation of a date-timestamp.
> ℹ️ - **Accessing the *****Last Viewed *****field**: You can access the *Last Viewed *field using any of the following getters of the Issue interface:
> ℹ️   - [get("lastViewed") or get("Last Viewed")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)` `that returns a [Timestamp](http://docs.oracle.com/javase/7/docs/api/java/sql/Timestamp.html)
> ℹ️     - **Example:** Last Viewed timestamp of the issue:
> ℹ️   - [getAsString("lastViewed") or getAsString("Last Viewed")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)` `that returns a [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html) representing the issue last viewed time.
> ℹ️     - **Example:** Last Viewed timestamp of the issue:
> ℹ️ 
> ℹ️ To manipulate the date see [here](http://docs.groovy-lang.org/latest/html/groovy-jdk/java/util/Date.html)


> ℹ️ #### Original Estimate
> ℹ️ 
> ℹ️ - **Field name: **`Original Estimate`
> ℹ️ - **Field ID: **`timeoriginalestimate`
> ℹ️ - **Description**: The Original Estimate field is a duration string representing the original time estimate.
> ℹ️ - **Accessing the Original Estimate field**: You can access the *Original Estimate* field using any of the following getters of the Issue interface:
> ℹ️   - [get("](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)<span style="color: #003366">[timeoriginalestimate](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)</span>[") or get("Original Estimate")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)` `that returns the original time estimate in seconds in [Long](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/Long.html)` `format
> ℹ️     - **Example:** Original Estimate of the issue in seconds:
> ℹ️   - [getAsString("Original Estimate") or ](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)[getAsString("timeoriginalestimate")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562) that returns [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html) representing the original time estimate in seconds.
> ℹ️     - **Example:** Original Estimate of the issue in seconds:
> ℹ️       
> ℹ️   - [getOriginalEstimate](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734)[()](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734) that returns the original time estimate in seconds in [Long](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/Long.html)` `format.
> ℹ️     - **Example:** Original Estimate of the issue in hours

> ℹ️ #### Parent
> ℹ️ 
> ℹ️ - **Field name: **`Parent`
> ℹ️ - **Field ID: ***none*
> ℹ️ - **Description**: Represents the parent of an issue. This applies only to sub-tasks.
> ℹ️ - **Accessing the parent issue of an issue: **You can access the parent of an issue using the [getParentObject()](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734/Issue+Interface#getEpic())` `that returns an [Issue](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734)
> ℹ️   - **Example:** Get the *username* of the user to whom the current issue's parent is assigned:
> ℹ️   - **Example:** Get the *status* of the current issue's parent issue

> ℹ️ #### Priority
> ℹ️ 
> ℹ️ - **Field name: **`Priority`
> ℹ️ - **Field ID:**` priority`
> ℹ️ - **Description**: The Priority field is an object describing the priority of the issue.
> ℹ️ - **Accessing the Priority field**: You can access the *Priority* field using any of the following getters of the Issue interface:
> ℹ️   - [get("priority") or get("Priority")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)` `that returns a [Priority](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/issue/priority/Priority.html)
> ℹ️     - **Example:** Name of the Priority of the issue:
> ℹ️   - [getAsString("Priority") or getAsString("priority"](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)[)](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562) that returns a [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html)` `representing the name of the Priority
> ℹ️     - **Example:** Name of the Priority of the issue:
> ℹ️       
> ℹ️   - [getPriorityObject()](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734/Issue+Interface#Methods native to JIRA) that returns a [Priority](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/issue/priority/Priority.html)
> ℹ️     - **Example:** ID of the Priority of the issue:

> ℹ️ #### Progress
> ℹ️ 
> ℹ️ - **Field name: **`Progress`
> ℹ️ - **Field ID: **`progress`
> ℹ️ - **Description**: The Progress field is a field describing the progress on the issue.
> ℹ️ - **Accessing the Progress field**: You can access the *Progress* field using any of the following getters of the Issue interface:
> ℹ️   - [get("progress") or get("Progress")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)` `that returns the percentage of progress on the issue in [Long](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/Long.html)
> ℹ️     - **Example:** Percentage of progress on the issue:
> ℹ️   - [getAsString("Progress") or getAsString("progress")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562) that returns a [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html)` `representing the percentage of progress on the issue
> ℹ️     - **Example:** Percentage of progress on the issue:

> ℹ️ #### Project
> ℹ️ 
> ℹ️ - **Field name: **`Project`
> ℹ️ - **Field ID:**` project`
> ℹ️ - **Description**: The Project field is an object describing the selected project.
> ℹ️ - **Accessing the Project field**: You can access the *Project* field using any of the following getters of the Issue interface:
> ℹ️   - [get("project") or get("Project")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)` `that returns a [Project](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461963993)
> ℹ️     - **Example:** Name of the project the linked issue belongs to:
> ℹ️   - [getAsString("Project") or getAsString("project")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562) that returns a [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html)` `representing the name of the project
> ℹ️     - **Example:** Name of the project
> ℹ️       
> ℹ️   - [getProjectObject()](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734/Issue+Interface#Methods native to JIRA) that returns a [Project](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461963993)
> ℹ️     - **Example:** Key of the project the issue belongs to:

> ℹ️ #### Remaining Estimate
> ℹ️ 
> ℹ️ - **Field name: **`Remaining Estimate`
> ℹ️ - **Field ID: **`timeestimate`
> ℹ️ - **Description**: The Remaining Estimate field is a number or a duration string representing the remaining time estimate in seconds.
> ℹ️ - **Accessing the Remaining Estimate field**: You can access the *Remaining Estimate *field using any of the following getters of the Issue interface:
> ℹ️   - [get("timeestimate")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)[ or ](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)[get("Remaining Estimate")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562) that returns the remaining time estimate in seconds in [Long](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/Long.html)` `format
> ℹ️     - **Example: **Remaining Estimate of the issue in seconds:
> ℹ️   - [getAsString("Remaining Estimate") or the ](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)[getAsString("timeestimate")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562) that returns a [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html)` `representing remaining time estimate in seconds.
> ℹ️     - **Example: **Remaining Estimate of the issue in seconds:

> ℹ️ #### Reporter
> ℹ️ 
> ℹ️ - **Field name: **`Reporter`
> ℹ️ - **Field ID:**` ``reporter`
> ℹ️ - **Description**: The Reporter field is an object that represents the user by whom the issue is reported.
> ℹ️ - **Accessing the Reporter field**: You can access the *Reporter *field using any of the following getters of the Issue interface:
> ℹ️   - [get("reporter") or get("Reporter")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)` `that returns an [ApplicationUser](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461472599)
> ℹ️     - **Example:** *Username* of the reporter of the issue:
> ℹ️   - [getAsString("Reporter") or ](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)[getAsString("reporter")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562) that returns the username in [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html)`:`
> ℹ️     - **Example:** *Username* of the reporter of the issue:
> ℹ️       
> ℹ️   - [getReporter](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734)[()](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734)` `that returns an [ApplicationUser](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461472599)
> ℹ️     - **Example:** Email address of the reporter:

> ℹ️ #### Resolution
> ℹ️ 
> ℹ️ - **Field name: **`Resolution`
> ℹ️ - **Field ID:**` ``reporter`
> ℹ️ - **Description**: The Resolution field is an object describing the resolution of the issue.
> ℹ️ - **Accessing the *****Resolution***** field**: You can access the *Resolution* field using any of the following getters of the Issue interface:
> ℹ️   - [get("resolution") or get("Resolution")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)` `that returns a [Resolution](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461406520)
> ℹ️     - **Example: **Name of the Resolution of the issue:
> ℹ️   - [getAsString("Resolution") or getAsString("resolution")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562) that returns a [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html)` `representing the name of the Resolution of the issue
> ℹ️     - **Example: **Name of the Resolution of the issue:
> ℹ️   - [getResolutionObject](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461406520)[()](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461406520) that returns a [Resolution](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461406520)
> ℹ️     - **Example:** Description of the resolution:

> ℹ️ #### Resolved
> ℹ️ 
> ℹ️ - **Field name: **`Resolved`
> ℹ️ - **Field ID:**` ``resolutiondate`
> ℹ️ - **Description**: The Resolved field is a [Timestamp](http://docs.oracle.com/javase/6/docs/api/index.html?java/sql/Timestamp.html) representing the resolution date.
> ℹ️ - **Accessing the *****Resolved***** field**: You can access the *Resolved *field using any of the following getters of the Issue interface:
> ℹ️   - [get("](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)[resolutiondate](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)[") or get("](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)[Resolved](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)[")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)` `that returns a [Timestamp](http://docs.oracle.com/javase/6/docs/api/index.html?java/sql/Timestamp.html)`:`
> ℹ️     - **Example: **Time stamp of resolution:
> ℹ️   - [getAsString("resolutiondate") or getAsString("resolutiondate")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562) that returns a [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html)` `representing the resolution date:
> ℹ️     - **Example: **Time stamp of resolution:
> ℹ️   - [getResolutionDate](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734/Issue+Interface#Methods native to JIRA)[()](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734/Issue+Interface#Methods native to JIRA) that returns a [Timestamp](http://docs.oracle.com/javase/6/docs/api/index.html?java/sql/Timestamp.html)`:`
> ℹ️     - **Example:**Time stamp of resolution:
> ℹ️ 
> ℹ️ To manipulate the date see [here](http://docs.groovy-lang.org/latest/html/groovy-jdk/java/util/Date.html)

> ℹ️ #### Security Level
> ℹ️ 
> ℹ️ - **Field name: **`Security Level`
> ℹ️ - **Field ID:**` ``security`
> ℹ️ - **Description**: The Security level field is an object describing the security level of the issue.
> ℹ️ - **Accessing the *****Security level***** field**: You can access the *Security level* field using any of the following getters of the Issue interface:
> ℹ️   - [get("security") or get("Security Level")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)` `that returns the [IssueSecurityLevel](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/issue/security/IssueSecurityLevel.html)
> ℹ️     - **Example:** ID of the security level of the issue:
> ℹ️   - [getAsString("Security Level") or ](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)[getAsString("security")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562) that returns a [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html)` `representing the name of the security level:
> ℹ️     - **Example:** Name of the security level
> ℹ️   - [getSecurityLevelId](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734/Issue+Interface#Methods native to JIRA)[()](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734/Issue+Interface#Methods native to JIRA) that returns the security ID in [Long](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/Long.html):
> ℹ️     - **Example:**  ID of the security level of the issue:

> ℹ️ #### Status
> ℹ️ 
> ℹ️ - **Field name: **`Status`
> ℹ️ - **Field ID:**` ``status`
> ℹ️ - **Description**: The Status field is an object describing the status of the issue.
> ℹ️ - **Accessing the *****Status***** field**: You can access the *Status* field using any of the following getters of the Issue interface:
> ℹ️   - [get("status") or get("Status")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)` `that returns a [S](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/462094606)[tatus](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/462094606)
> ℹ️     - **Example:** Name of the status of the issue:
> ℹ️   - [getAsString("Status") or getAsString("status")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)` `that returns a [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html)` `representing the name of the status the issue is in:
> ℹ️     - **Example:** Name of the status of the issue:
> ℹ️   - [getStatusObject](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734/Issue+Interface#Methods native to JIRA)[()](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734/Issue+Interface#Methods native to JIRA) that returns a [S](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/462094606)[tatus](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/462094606):
> ℹ️     - **Example: **Name of the status category of the status:

> ℹ️ #### Stories
> ℹ️ 
> ℹ️ - **Field name: **`Stories`
> ℹ️ - **Field ID:** *none*
> ℹ️ - **Description**: Represents the issues in the current Epic.
> ℹ️ - **Accessing the issues in an *****Epic*****: **You can access the issues in an Epic using the [getStories()](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734/Issue+Interface#getStories())` `that returns a` `[List](http://docs.oracle.com/javase/7/docs/api/java/util/List.html)`<`[Issue](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734)`>`
> ℹ️   - **Example:** Get the issues of an Epic that are in Closed status:
> ℹ️   - **Example:** Get the number of issues in the current Epic

> ℹ️ #### Subtasks
> ℹ️ 
> ℹ️ - **Field name: **`Sub-Tasks`
> ℹ️ - **Field ID:**` ``subtasks`
> ℹ️ - **Description**: Represents the subtasks of the current issue.
> ℹ️ - **Accessing the *****Subtasks *****field**: You can access the *Subtasks* field using any of the following getters of the Issue interface:
> ℹ️   - [get("subtasks") or get("Sub-Tasks")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)` `that returns a [List](http://docs.oracle.com/javase/7/docs/api/java/util/List.html)<[Issue](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734)`>`
> ℹ️     - **Example:** First subtask of the parent:
> ℹ️   - [getAsString("Sub-Tasks") or getAsString("subtasks")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562) that returns a [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html)` `with comma separated keys of the subtasks.
> ℹ️     - **Example:** Subtasks of the issue
> ℹ️   - [getSubTaskObjects](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734/Issue+Interface#Methods native to JIRA)[()](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734/Issue+Interface#Methods native to JIRA) that returns a [List](http://docs.oracle.com/javase/7/docs/api/java/util/List.html)<[Issue](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734)`>`:
> ℹ️     - **Example:** Last subtask's status:

> ℹ️ #### Summary
> ℹ️ 
> ℹ️ - **Field name: **`Summary`
> ℹ️ - **Field ID:**` ``summary`
> ℹ️ - **Description**: The Summary field is a string representation of a single-line text describing the summary of the issue.
> ℹ️ - **Accessing the *****Summary***** field**: You can access the *Summary* field using any of the following getters of the Issue interface:
> ℹ️   - [get("summary") or get("Summary")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)` `that returns a [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html):
> ℹ️     - **Example:** Summary of the issue:
> ℹ️   - [getAsString("Summary") or getAsString("summary")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)` `that returns a [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html):
> ℹ️     - **Example:** Summary of the issue:
> ℹ️   - [getSummary()](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734/Issue+Interface#Methods native to JIRA) that returns a [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html)
> ℹ️     - **Example:** Summary of the issue:

> ℹ️ #### Time Spent
> ℹ️ 
> ℹ️ - **Field name: **`Time Spent`
> ℹ️ - **Field ID:**` ``timespent`
> ℹ️ - **Description**: The Time spent field is a number representing the time spent on the issue in seconds.
> ℹ️ - **Accessing the *****Time spent***** field**: You can access the *Time spent* using any of the following getters of the Issue interface:
> ℹ️   - [get("timespent") or get("Time Spent")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)` `that returns the time spent in seconds in a [Long](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/Long.html)` `format
> ℹ️     - **Example:** Time spent on the issue in seconds:
> ℹ️   - [getAsString("Time Spent") or ](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)[getAsString("timespent")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562) that returns a [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html)` `representing the time spent in seconds.
> ℹ️     - **Example:** Time spent on the issue in seconds:
> ℹ️       
> ℹ️   - [getTimeSpent](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734)[()](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734) that returns the time spent in seconds in a [Long](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/Long.html)` `format:
> ℹ️     - **Example:** Time spent on the issue in seconds:

> ℹ️ #### <span style="color: #000000">Updated</span>
> ℹ️ 
> ℹ️ - **Field name: **`Updated`
> ℹ️ - **Field ID: **`updated`
> ℹ️ - **Description**: The Updated field is a [Timestamp](http://download.oracle.com/javase/6/docs/api/index.html?java/sql/Timestamp.html) representing the issue updated date-time.
> ℹ️ - **Accessing the *****Updated *****field**: You can access the *Updated *field using any of the following getters of the Issue interface:
> ℹ️   - [get("updated") or get("Updated")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)` `that returns a [Timestamp](http://download.oracle.com/javase/6/docs/api/index.html?java/sql/Timestamp.html)
> ℹ️     - **Example: **Updated timestamp of the issue:
> ℹ️   - [getAsString("Updated") or getAsString("updated")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562) that returns a [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html)` `representing the issue updated date/time.
> ℹ️     - **Example: **Updated timestamp of the issue:
> ℹ️   - [getUpdated](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734/Issue+Interface#Methods native to JIRA)[()](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734/Issue+Interface#Methods native to JIRA) that returns a [Timestamp](http://download.oracle.com/javase/6/docs/api/index.html?java/sql/Timestamp.html)
> ℹ️     - **Example: **Updated time stamp of the issue:
> ℹ️ 
> ℹ️ To manipulate the date see [here](http://docs.groovy-lang.org/latest/html/groovy-jdk/java/util/Date.html)

> ℹ️ #### Votes
> ℹ️ 
> ℹ️ - **Field name: **`Votes`
> ℹ️ - **Field ID:**` ``votes`
> ℹ️ - **Description**: The Votes field is a collection of users who voted for issue.
> ℹ️ - **Accessing the *****Votes***: You can access the *Votes* field using any of the following getters of the Issue interface:
> ℹ️   - [get("votes") or get("Votes")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)` `that returns a [Collection](http://docs.oracle.com/javase/7/docs/api/java/util/Collection.html)<[ApplicationUser](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461472599)`>`
> ℹ️     - **Example:** Did the reporter vote for the issue?
> ℹ️   - [getAsString("votes") or getAsString("votes")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562) that returns a [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html)` `with comma separated voters names:
> ℹ️     - **Example:** Voters of the issue
> ℹ️   - [getVotes](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734)[()](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734) that returns the number of votes in [Long](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/Long.html)
> ℹ️     - **Example:** Number of votes on the issue:

> ℹ️ #### Watchers
> ℹ️ 
> ℹ️ - **Field name: **`Watchers`
> ℹ️ - **Field ID:**` watches`
> ℹ️ - **Description**: The Watchers field is a collection of users watching the issue.
> ℹ️ - **Accessing the *****Watchers***** field**: You can access the *Watchers* field using any of the following getters of the Issue interface:
> ℹ️   - [get("watches") or get("Watchers")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)` `that returns a [Collection](http://docs.oracle.com/javase/7/docs/api/java/util/Collection.html)<[ApplicationUser](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461472599)`>`
> ℹ️     - **Example: **Username of the first user watching the issue:
> ℹ️   - [getAsString("Watchers") or getAsString("watches")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)` `that returns a [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html)` `with comma separated watchers names:
> ℹ️     - **Example**: Watchers of the issue
> ℹ️   - [getWatches](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734/Issue+Interface#Methods native to JIRA)[()](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537734/Issue+Interface#Methods native to JIRA) that returns the number of watchers in [Long](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/Long.html):
> ℹ️     - **Example: **Number of users watching the issue:

> ℹ️ #### Work log
> ℹ️ 
> ℹ️ - **Field name: **`Log Work`
> ℹ️ - **Field ID:** `worklog`
> ℹ️ - **Description**: The Work log field is a list of worklogs logged on the issue.
> ℹ️ - **Accessing the *****Worklog***: You can access the Log Work field using the [get("worklog") or get("Log Work")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562) that returns a [List](http://docs.oracle.com/javase/7/docs/api/java/util/List.html)`<`[Worklog](https://appfire.atlassian.net/wiki/display/JMWE/Worklog+interface)`>`
> ℹ️   - **Example:** Time spent on the last work logged


> ℹ️ #### <span style="color: #000000">Work Ratio</span>
> ℹ️ 
> ℹ️ - **Field name: **`Work Ratio`
> ℹ️ - **Key: **`workratio`
> ℹ️ - **Description**: The Work Ratio field is a number representing the ratio of work done on the issue.
> ℹ️ - **Accessing the *****Work Ratio *****field**: You can access the Work ratio field using any of the following getters of the Issue interface:
> ℹ️   - [get("workratio") or get("Work Ratio")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562) that returns the <span style="color: #172b4d">percentage of work that has been logged against the issue vs the estimate you made for it</span> in [Long](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/Long.html)
> ℹ️     - **Example:** Work ratio of the issue
> ℹ️   - [getAsString("Work Ratio") or getAsString("workratio") ](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)that returns a [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html)` `representing the <span style="color: #172b4d">work that has been logged against the issue vs the estimate</span>:
> ℹ️     - **Example:** Work ratio of the issue

> ℹ️ #### ∑ Original Estimate
> ℹ️ 
> ℹ️ - **Field name: **`Σ Original Estimate`
> ℹ️ - **Field ID:**` ``aggregatetimeoriginalestimate`
> ℹ️ - **Description**: The aggregate original estimate field is a number representing the total original estimate of the issue and its sub-tasks if the issue has any.
> ℹ️ - **Accessing the ∑ ****Original Estimate field**: You can access the *∑ Original Estimate* field using any of the following getters of the Issue interface:
> ℹ️   - [get("aggregatetimeoriginalestimate") or get("∑ Original Estimate")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)` `that returns aggregate original estimate of seconds in [Long](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/Long.html):
> ℹ️     - **Example: **Aggregate original estimate of the issue in seconds:
> ℹ️   - [getAsString("aggregatetimeoriginalestimate") or getAsString("](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)[∑ Original Estimate")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562) that returns a [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html)` `representing the aggregate original estimate in seconds:
> ℹ️     - **Example: **Aggregate original estimate of the issue in seconds:

> ℹ️ #### ∑ Remaining Estimate
> ℹ️ 
> ℹ️ - **Field name: **`Σ Remaining Estimate`
> ℹ️ - **Field ID:**` ``aggregatetimeestimate`
> ℹ️ - **Description**: The aggregate remaining Estimate field is a number representing the total remaining estimate of the issue and its sub-tasks if the issue has any.
> ℹ️ - **Accessing the ∑ ****Remaining Estimate field**: You can access the *∑ Remaining Estimate* field using any of the following getters of the Issue interface:
> ℹ️   - [get("aggregatetimeestimate") or get("∑ Remaining Estimate")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)` `that returns aggregate remaining estimate in seconds in [Long](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/Long.html):
> ℹ️     - **Example: **Aggregate remaining estimate of the issue in seconds:
> ℹ️   - [getAsString("aggregatetimeestimate") or getAsString("](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)[∑ Remaining Estimate](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)[")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562) that returns a [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html)` `representing the aggregate remaining estimate in seconds:
> ℹ️     - **Example: **Aggregate remaining estimate of the issue in seconds:

> ℹ️ #### ∑ Progress
> ℹ️ 
> ℹ️ - **Field name: **`Σ Progress`
> ℹ️ - **Field ID:**** **`aggregateprogress`
> ℹ️ - **Description**: The Aggregate Progress field is an object describing the aggregate progress on the issue.
> ℹ️ - **Accessing the ∑ Progress field**: You can access the *∑ Progress* field using any of the following getters of the Issue interface:
> ℹ️   - [get("aggregateprogress") or get("∑ Progress")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)` `that returns aggregate percentage progress on the issue in [Long](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/Long.html)` `format:
> ℹ️     - **Example:** Aggregate Progress on the issue:
> ℹ️   - [getAsString("aggregateprogress") or getAsString("∑ Progress")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562) that returns a [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html)` `representing the aggregate remaining estimate in seconds:
> ℹ️     - **Example: **Aggregate progress on the issue:

> ℹ️ #### ∑ Time Spent
> ℹ️ 
> ℹ️ - **Field name: **`Σ Time Spent`
> ℹ️ - **Field ID:**` aggregatetimespent`
> ℹ️ - **Description**: The Aggregate time spent field is a number representing the total time spent on the issue and its sub-tasks if the issue has any.
> ℹ️ - **Accessing the ∑ Time spent field**: You can access the *∑ Time spent*** **field using the
> ℹ️   - [get("aggregatetimespent") or get("∑ Time spent")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)` `that returns aggregate remaining estimate in seconds in [Long](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/Long.html)`:`
> ℹ️     - **Example: **Aggregate time spent on the issue in seconds:
> ℹ️   - [getAsString("aggregatetimespent") or getAsString("∑ Time spent")](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562) that returns a [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html)` `representing the aggregate remaining estimate in seconds:
> ℹ️     - **Example: **Aggregate time spent on the issue in seconds: