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

This document details the methods you can use on any `Issue` object, such as the one provided by the `issue`, `linkedIssue` and `parentIssue` variables (where applicable), as well as `Issue` objects returned by other methods such as `getParentObject``()`, `getEpic()` or `getLinkedIssues()`.

**Methods of the Issue interface: **

> ⚠️ :green_star: denotes a method that is specific to JMCF

**On this page:**


#### Getters

| **Method** | **Return type** | **Returns** |
| --- | --- | --- |
| [get(String fieldNameOrID)](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)` `:green_star: | `Depends on the field being accessed` | The value of a system or custom field of the Issue object. |
| [get(String fieldNameOrID, Object defaultValue)](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/78055905)` `:green_star: | `Depends on the field being accessed` | The value of a system or custom field of the Issue object. If the value is null, it returns the default value specified as the second parameter. |
| [getAffectedVersions](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/issue/Issue.html#getAffectedVersions())`() ` | `<`[Version](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461538137)`>` | A** **collection of Affects Version/s objects, an empty collection if there are no affects versions. |
| [getAssignee](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/issue/Issue.html#getAssignee())`()` | [ApplicationUser](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461472599) | The Assignee user, null if the issue is not assigned. |
| [getAsString(String fieldNameOrID)](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)` `:green_star: | [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html) | Same as the `get` method, but returns a String representation of the value of the system or custom field, whenever possible. |
| [getAsString(String fieldNameOrID, String defaultValue)](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/78055905):green_star: | [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html) | Same as the `get` method, but returns a String representation of the value of the system or custom field, whenever possible. If the value is null, it returns the default value specified as the second parameter. The `defaultValue `must be a String. |
| [<span style="color: #333333">getAsJsonData(</span>](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)<span style="color: #333333">[String fieldNameOrID](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)</span>[<span style="color: #333333">)</span>](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)<span style="color: #333333"> </span>:green_star: | [JsonData](https://docs.atlassian.com/software/jira/docs/api/7.5.0/com/atlassian/jira/issue/fields/rest/json/JsonData.html) | <span style="color: #333333">The</span><span style="color: #333333"> </span><span style="color: #333333">JSON-style version of</span><span style="color: #333333"> a system or a custom field of the Issue object</span><span style="color: #333333">, essentially a key-value Map</span><span style="color: #333333">. </span><span style="color: #172b4d">This can be useful to access some complex Jira Software and Jira Service desk fields.</span> |
| [getAttachments](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/issue/Issue.html#getAttachments())`()` | [Collection](http://download.oracle.com/javase/6/docs/api/index.html?java/util/Collection.html)`<`[Attachment](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/462095169)`>` | A collection of attachment objects, an empty collection if there are no attachments. |
| [getAvailableOptions(String fieldNameOrID)](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461997007)` `:green_star: | [Collection](http://download.oracle.com/javase/6/docs/api/index.html?java/util/Collection.html)`<Object the field returns>` | The Collection of available options for a field, which can be:<br>- a [Collection](http://download.oracle.com/javase/6/docs/api/index.html?java/util/Collection.html)`<`[Option](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/462160057)`>` for select-type fields
- a [Collection](http://download.oracle.com/javase/6/docs/api/index.html?java/util/Collection.html)`<`[Version](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461538137)`>` for version-type fields
- a [Collection](http://download.oracle.com/javase/6/docs/api/index.html?java/util/Collection.html)`<`[ProjectComponent](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/462062256)`>` for the components field
- etc.<br>Both field names and field IDs are supported, just like on the get() method. See [here](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461997007) for the list of supported fields. |
| [getComponentObjects](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/issue/Issue.html#getComponentObjects())`()` | [Collection](http://download.oracle.com/javase/6/docs/api/index.html?java/util/Collection.html)`<`[ProjectComponent](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/462062256)`>` | A collection of project components (as objects) that this issue is assigned to,  an empty collection if there are no components. |
| [getCreated](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/issue/Issue.html#getCreated())`()` | [Timestamp](http://download.oracle.com/javase/6/docs/api/index.html?java/sql/Timestamp.html) | The timestamp of the issue creation. |
| [getCreator](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/issue/Issue.html#getCreator())`()` | [ApplicationUser](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461472599) | The user who created the issue. |
| [getDescription](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/issue/Issue.html#getDescription())`()` | [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html) | The description of the issue, `null` if there is no description for the issue |
| [getDueDate](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/issue/Issue.html#getDueDate())`()` | [Timestamp](http://download.oracle.com/javase/6/docs/api/index.html?java/sql/Timestamp.html) | The due date of the issue, `null` if there is no due date set for the issue |
| `getEntityProperty(String propertyName)`` `:green_star: | [Object](https://docs.oracle.com/javase/7/docs/api/java/lang/Object.html) | <span style="color: #091e42">The value of the specified Entity property of the issue, parsed into a Groovy object.</span> |
| [getEnvironment](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/issue/Issue.html#getEnvironment())`()` | [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html) | The Environment of the issue, `null` if there is no Environment set for the issue |
| ##### `getEpic() `:green_star: | [Issue](https://appfire.atlassian.net/wiki/spaces/JMCF/pages/465764748) | The Epic, if any, of the current issue. `null` if the issue doesn't belong to an Epic. |
| [getEstimate](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/issue/Issue.html#getEstimate())`()` | [Long](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/Long.html) | The "remaining estimate" of work left to be performed on this issue, in milliseconds, `null` if empty. |
| [getFieldHistory(](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)<span style="color: #333333">[String fieldNameOrID](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)</span>[)](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)` `:green_star: | [<span style="color: #172b4d">List</span>](http://docs.oracle.com/javase/7/docs/api/java/util/List.html)`<`[<span style="color: #172b4d">ChangeItemBean</span>](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461767899)`>` | `The history of a system or custom field of the Issue object.` |
| [getFixVersions](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/issue/Issue.html#getFixVersions())`()` | [Collection](http://download.oracle.com/javase/6/docs/api/index.html?java/util/Collection.html)`<`[Version](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461538137)`>` | `A`` ``collection of Fix V``ersion/s objects, an empty collection if there are no Fix versions.` |
| [getId](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/issue/Issue.html#getId())`()` | [Long](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/Long.html) | The ID of the issue |
| `getInwardIssueLinks() `:green_star: | [List](http://docs.oracle.com/javase/7/docs/api/java/util/List.html)`<`[IssueLink](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461996485)`>` | A list of inward issue links to the issue, an empty list if there are no inward issue links. |
| [getIssueTypeId](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/issue/Issue.html#getIssueTypeId())`()` | [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html) | The ID of the issue type of the issue. |
| [getIssueType](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/issue/Issue.html#getIssueType())`()` | [IssueType](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461407031) | The issue type object of the issue |
| [getKey](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/issue/Issue.html#getKey())`()` | [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html) | The key of the issue |
| [getLabels](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/issue/Issue.html#getLabels())`()` | [Set](http://download.oracle.com/javase/6/docs/api/index.html?java/util/Set.html)`<`[Label](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/462160018)`>` | The labels of the issue, empty Set if no labels. |
| `getLinkedIssues(String linkType) `:green_star: | [List](http://docs.oracle.com/javase/7/docs/api/java/util/List.html)`<`[Issue](https://appfire.atlassian.net/wiki/spaces/JMCF/pages/465764748)`>` | A list of issues linked to the current issue (including the issue links <span style="color: #172b4d">being added on the transition screen during a transition)</span> through a specific link type.<br>:warning: **Note:** Supports all issue links other than Parent-Subtask (see `getParentObject()` and `getSubTaskObjects()` for that), Epic-Story (see`getEpic()`and`getStories()`for that) and Parent-Child portfolio (see `getPortfolioParent() and ``getPortfolioChildIssues() `for that) |
| `getLinkedIssues() `:green_star: | [List](http://docs.oracle.com/javase/7/docs/api/java/util/List.html)`<`[Issue](https://appfire.atlassian.net/wiki/spaces/JMCF/pages/465764748)`>` | A list of issues linked to the current issue (including the issue links <span style="color: #172b4d">being added on the transition screen during a transition)</span> through any regular link type.<br>:warning: **Note:** Supports all issue links other than Parent-Subtask (see `getParentObject()` and `getSubTaskObjects()` for that), Epic-Story (see`getEpic()`and`getStories()`for that) and Parent-Child portfolio (see `getPortfolioParent() and ``getPortfolioChildIssues() `for that) |
| `getModifiedFields()` | [Map](http://download.oracle.com/javase/7/docs/api/java/util/Map.html?is-external=true)`<`[String](http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true)`,`[ModifiedValue](https://docs.atlassian.com/software/jira/docs/api/7.2.2/com/atlassian/jira/issue/ModifiedValue.html)`>` | <span style="color: #474747">Retrieve a map of issue fields that have been modified during the current transition.</span> |
| [getNumber](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/issue/Issue.html#getNumber())`()` | [Long](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/Long.html) | The issue number in the project |
| [getOriginalEstimate](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/issue/Issue.html#getOriginalEstimate())`()` | [Long](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/Long.html) | The "original estimate" of work to be performed on this issue, in milliseconds, null if empty. |
| `getOutwardIssueLinks()` :green_star: | [List](http://docs.oracle.com/javase/7/docs/api/java/util/List.html)`<`[IssueLink](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461996485)`>` | A list of outward issue links from the issue, an empty list if there are no outward issue links. |
| [getParentObject](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/issue/Issue.html#getParentObject())`()` | [Issue](https://appfire.atlassian.net/wiki/spaces/JMCF/pages/465764748) | The parent Issue, or null if the issue is not a subtask. |
| `getPortfolioChildIssues()`:green_star: | [List](http://docs.oracle.com/javase/7/docs/api/java/util/List.html)`<`[Issue](https://appfire.atlassian.net/wiki/spaces/JMCF/pages/465764748)`>` | A list of issues linked to the current issue through the "is parent of (Portfolio child Issues)" link type |
| `getPortfolioParent()`:green_star: | [Issue](https://appfire.atlassian.net/wiki/spaces/JMCF/pages/465764748) | The issue linked to the current issue through the "is child of (Portfolio Parent Link)", or `null` if the issue is not a child. |
| [getPriorityObject](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/issue/Issue.html#getPriorityObject())`()` | [Priority](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/462159986) | The Priority for this Issue. |
| [getProjectId](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/issue/Issue.html#getProjectId())`()` | [Long](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/Long.html) | The ID of the Project for this Issue. |
| [getProjectObject](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/issue/Issue.html#getProjectObject())`()` | [Project](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461963993) | The Project for this Issue. |
| [getRawValue(String fieldNameOrID)](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)` `:green_star: | Depends on the field being accessed | Same as the `get` method, but for Single-Select type custom fields, returns an Option object instead of a String |
| [getRemoteLinks(String ApplicationName)](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461537562)` `:green_star: | [Collection](http://download.oracle.com/javase/6/docs/api/index.html?java/util/Collection.html)`<`[RemoteIssueLink](https://appfire.atlassian.net/wiki/x/wwmnB)`>` | A <span style="color: #000000">collection of remote issue links of the current issue to the target application (e.g. "jira" or "confluence"). When the </span>`ApplicationName`<span style="color: #000000"> is null all the remote issue links are returned.</span> |
| [getReporter](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/issue/Issue.html#getReporter())`()` | [ApplicationUser](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461472599) | The Reporter of the issue |
| [getResolutionDate](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/issue/Issue.html#getResolutionDate())`()` | [Timestamp](http://download.oracle.com/javase/6/docs/api/index.html?java/sql/Timestamp.html) | Timestamp of when an issue was resolved. Will be `null` if it hasn't been resolved yet, or if an issue has been returned to the 'unresolved' state. |
| [getResolutionId](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/issue/Issue.html#getResolutionId())`()` | [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html) | The ID of the resolution of the issue, if any |
| [getResolution](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/issue/Issue.html#getResolution())`()` | [Resolution](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/461406520) | The Resolution for this Issue, `null` if the issue hasn't been resolved yet, or if an issue has been returned to the 'unresolved' state. |
| [getSecurityLevelId](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/issue/Issue.html#getSecurityLevelId())`()` | [Long](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/Long.html) | The Security level for this issue, `null` if there is no Security level set for the issue |
| `getServiceDeskUrl()` :green_star: | [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html) | The URL of the issue's customer request view.  Only applies to Service Desk requests. Returns `null` otherwise. |
| [getStatus](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/issue/Issue.html#getStatus())`()` | [Status](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/462094606) | The status of the issue |
| ##### `getStories() `:green_star: | [List](http://docs.oracle.com/javase/7/docs/api/java/util/List.html)`<`[Issue](https://appfire.atlassian.net/wiki/spaces/JMCF/pages/465764748)`>` | A list of stories of the current Epic, an empty list if there are no Stories |
| [getSubTaskObjects](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/issue/Issue.html#getSubTaskObjects())`()` | [Collection](http://download.oracle.com/javase/6/docs/api/index.html?java/util/Collection.html)`<`[Issue](https://appfire.atlassian.net/wiki/spaces/JMCF/pages/465764748)`>` | The subtasks of this issue, an empty collection if no subtasks |
| [getSummary](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/issue/Issue.html#getSummary())`()` | [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html) | The summary of the issue |
| [getTimeSpent](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/issue/Issue.html#getTimeSpent())`()` | [Long](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/Long.html) | The "total time spent" working on this issue, in milliseconds, `null` if empty. |
| [getUpdated](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/issue/Issue.html#getUpdated())`()` | [Timestamp](http://download.oracle.com/javase/6/docs/api/index.html?java/sql/Timestamp.html) | The timestamp of the issue update |
| [getUserProperty(String propertyName)](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/78055905)` `:green_star: | [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html) | <span style="color: #091e42">Returns the value of the specified User property of the user.</span><br>> ⚠️ <span style="color: #000000">This method returns User Properties that are defined on the Edit User Properties Jira admin page. which are </span>*<span style="color: #000000">different</span>*<span style="color: #000000"> from the Entity Properties that can only be set and read programmatically</span><span style="color: #333333"> </span><span style="color: #333333">(see the Set/Get/DeleteEntityProperty methods)</span> |
| `getUrl()` :green_star: | [String](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/String.html) | The URL of the issue's View screen. |
| [getVotes](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/issue/Issue.html#getVotes())`()` | [Long](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/Long.html) | The number of votes for the issue, `null` if empty. |
| [getWatches](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/issue/Issue.html#getWatches())`()` | [Long](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/Long.html) | The number of watchers for the issue, `null` if empty. |
| [getWorkflowId](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/issue/Issue.html#getWorkflowId())`()` | [Long](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/Long.html) | The ID of the workflow the issue belongs to |
| [isCreated](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/issue/Issue.html#isCreated())`()` | [Boolean](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/Boolean.html) | True when the issue is created |
| [isEditable](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/issue/Issue.html#isEditable())`()` | [Boolean](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/Boolean.html) | True when the issue is editable |
| [isSubTask](https://developer.atlassian.com/static/javadoc/jira/reference/com/atlassian/jira/issue/Issue.html#isSubTask())`()` | [Boolean](http://download.oracle.com/javase/6/docs/api/index.html?java/lang/Boolean.html) | True when the issue is a sub-task |

#### Setters

| **Method** | **Parameters** | **Description** |
| --- | --- | --- |
| `setEntityProperty(String propertyName, Object value)`` `:green_star: | `propertyName`: A string representing the name of the Entity Property<br>`Object value: `<span style="color: #000000">The value to set the field to.</span> | <span style="color: #091e42">Sets the value of the specified Entity property of the issue to a JSON representation of the specified value.</span> |
| `setEntityPropertyToJsonString(String propertyName, String jsonString)`` `:green_star: | `propertyName`: A string representing the name of the Entity Property<br>`jsonString: `<span style="color: #000000">A String representing the</span> JSON string value to set. | <span style="color: #091e42">Sets the value of the specified Entity property of the issue to the specified JSON string.</span> |
| [setFieldValue(](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/462128154)[String fieldNameOrId, Object value)](https://appfire.atlassian.net/wiki/spaces/JMWE/pages/462128154)` `:green_star: | `fieldNameOrId`: A string representing the <span style="color: #000000">name or ID of a standard or custom field</span><br>`Object value: `<span style="color: #000000">The value to set the field to.</span> | Sets the value of a system or custom field of the Issue object |

#### Others

| **Method** | **Parameters** | **Description** |
| --- | --- | --- |
| `deleteEntityProperty(String propertyName)`` `:green_star: | `propertyName`: A string representing the name of the Entity Property | <span style="color: #091e42">Deletes the specified Entity property of the issue.</span> |
| `addAvailableOption(String fieldNameorID, String value)`` `:green_star: | `fieldNameOrId`: A string representing the <span style="color: #000000">name or ID of a standard or custom field</span><br>`value: `<span style="color: #000000">The value to set the field to.</span> | <span style="color: #091e42">Adds the provided value as a new possible option to the mentioned field.</span><br>> ⚠️ <span style="color: #000000">Only applies to fields that have a fixed list of possible values, such as Affects Version/s, Fix Version/s, Components, Radio buttons, Checkboxes, Single select and Multi-select list type custom fields.</span> |
| `linkIssue(String linkTypeDirection, Issue destIssue)`` `:green_star: | `linkTypeDirection`: A string representing  t<span style="color: #000000">he link type </span>*<span style="color: #000000">direction</span>*<span style="color: #000000"> (e.g. blocks or is blocked by)</span>.<br>`destIssue: `<span style="color: #000000">The issue to link to.</span> | <span style="color: #000000">Links the current issue to the specified issue through the specified link type direction</span> |
| `linkIssue(String linkTypeDirection, String destIssueKey)`` `:green_star: | `linkTypeDirection`: A string representing  t<span style="color: #000000">he link type </span>*<span style="color: #000000">direction</span>*<span style="color: #000000"> (e.g. blocks or is blocked by)</span>.<br>`destIssue: `<span style="color: #091e42"> A string representing t</span><span style="color: #000000">he key of the issue to link to.</span> | <span style="color: #000000">Links the current issue to the issue with the </span><span style="color: #000000">specified issue key </span><span style="color: #000000">through the specified link type direction</span> |