I'm building a python script that produces a custom export of Jira data to an Excel spreadsheet. I'm having issues to access the field value(s) of multi-select dropdown fields.
The code contains a dict for themes. Within that dict, the following works just fine for most fields:
'Field name' : theme.fields.customfield_123,
However, for fields of type multi-select dropdown, the script returns something like:
[<JIRA CustomFieldOption: value='xxx', id='123'>]
In case the issue has multiple values for that field, the return value would look like:
[<JIRA CustomFieldOption: value='xxx', id='123'>, <JIRA CustomFieldOption: value='yyy', id='456'>]
I need a function that only returns the value(s), in the upper example "xxx, yyy". I've tried multiple approaches without success. Any ideas?