Jira’s Python client returns complete main task details but omits subtask descriptions. How can I access the subtask description?
ticket_main = jira.issue('ABC-001')
for child_task in ticket_main.fields.subtasks:
if 'details' in child_task.fields.summary.lower():
desc_content = child_task.fields.description
print(child_task.raw['fields'])