0
と一致しない、私は現在、次のルートを使って、プロジェクトのチケットに費やした時間の量を取得するためにJIRA REST APIを使用しています:JIRA REST APIスプリント号ルート - timeSpentとtimeSpentSecondsは
/rest/agile/1.0/board/{boardId}/sprint/{sprintId}/issue
issues
の1つに
、私は時間に関連する次のデータを受信:
"timetracking": {
"remainingEstimate": "9w 1d",
"timeSpent": "4d",
"remainingEstimateSeconds": 1324800,
"timeSpentSeconds": 115200
},
日秒を変換する場合、それはtimeSpent
4日指定場所として、1.33333333日になります。
なぜtimeSpent
とtimeSpentSeconds
が足りないのですか?一致するように問題を解決する方法はありますか?