JIRAIssue
Properties
| Name |
Type |
Description |
Notes |
| id |
int |
|
[optional] [readonly] |
| url |
str |
|
[optional] [readonly] |
| jira_id |
str |
|
[optional] |
| jira_key |
str |
|
[optional] |
| jira_creation |
datetime |
The date a Jira issue was created from this finding. |
[optional] |
| jira_change |
datetime |
The date the linked Jira issue was last modified. |
[optional] |
| jira_project |
int |
|
[optional] |
| finding |
int |
|
[optional] |
| engagement |
int |
|
[optional] |
| finding_group |
int |
|
[optional] |
Example
from defectdojo_api_generated.models.jira_issue import JIRAIssue
# TODO update the JSON string below
json = "{}"
# create an instance of JIRAIssue from a JSON string
jira_issue_instance = JIRAIssue.from_json(json)
# print the JSON string representation of the object
print(JIRAIssue.to_json())
# convert the object into a dict
jira_issue_dict = jira_issue_instance.to_dict()
# create an instance of JIRAIssue from a dict
jira_issue_from_dict = JIRAIssue.from_dict(jira_issue_dict)
[Back to Model list] [Back to API list] [Back to README]