This Apex-defined type holds information about an existing Jira Issue, including both standard and custom fields.
|
Field |
Type |
Description |
|---|---|---|
|
summary |
String |
A brief one-line summary of the Issue. |
|
description |
String |
A detailed description of the Jira Issue. |
|
environment |
String |
The hardware or software environment to which the Issue relates. |
|
assignee |
The Jira account whom the Issue is assigned. |
|
|
reporter |
The Jira account that reported the Issue. |
|
|
priority |
String |
The importance of the Issue in relation to other issues (e.g. High, Low, Lowest). |
|
security |
String |
The Security Level for the Jira Issue |
|
versions |
String [] |
Affects Versions: Project versions names for which the Issue is (or was) manifesting. |
|
fixVersions |
String [] |
Fix Versions: Project versions names in which the Issue was (or will be) fixed. |
|
components |
String [] |
Project components names to which this Issue relates. |
|
timeTracking |
The original and remaining time estimates for resolving the Issue. |
|
|
labels |
String [] |
Labels to which this Issue relates. |
|
dueDate |
Date |
The date by which this Issue is scheduled to be completed. |
|
customTextFields |
List of custom text fields. |
|
|
customDateTimeFields |
The list of custom date/time fields. |
|
|
customDateFields |
The list of custom date fields. |
|
|
customNumberFields |
The list of custom number fields. |
|
|
customLabelsFields |
The list of custom label fields. |
|
|
customMultiSelectFields |
The list of custom multi-select fields. |
|
|
customMultiUserFields |
The list of custom multi-user fields. |
|
|
customSingleSelectFields |
The list of custom single-select fields. |
|
|
customSingleUserFields |
The list of custom single-user fields. |
|
|
customCascadeFields |
The list of custom cascade fields. |
|
|
rawJSONFields |
rawJSONFields |
Raw JSON Fields: Jira Issue fields values in JSON string, the structure for this JSON is defined in the Jira REST API documentation. |
|
rawJSONFieldsSchema |
rawJSONFieldsSchema |
Raw JSON Fields Schema: Jira Issue fields schemas in JSON string, the structure for this JSON is defined in the Jira REST API documentation. |
This Apex-Defined is returned only by calling zAgileConnect Flow Action that retrieve Issue fields. It is not intended to be created or set by users.