我正在尝试从字典 Dictionary
summary: summaryValue,
project: projectValue
priority:priorityValue
Requestor:RequestorValue,
issue:issueValue,
labels: LabelValue,
customfield_xyz:customfield_xyzValue,
我期望的json结构如下所示:
{
"fields": {
"summary": "summaryValue",
"project": {
"key": "projectValue"
},
"priority": {
"name": "priorityValue"
},
"Requestor": {
"name": "RequestorValue"
},
"issue": {
"name": "issueValue"
},
"labels": "LabelValue",
"customfield_xyz": "customfield_xyzValue"
}
}