Orders API doesn't return processing_fee_money in refunds object

In the docs they said that Order>Refund object has processing_fee_money field, but it is omitted in every response. But in response from deprecated refund endpoint i can see those fees that have been returned.
I want to avoid using deprecated endpoints

There are refunds from Order object requested via Orders API:
“refunds”: [
{
“id”: “UGQ2klGNHUVCNWHZEp47ImZrQz93q7T6uDTjqZ8speT”,
“location_id”: “CRNKFZKBBDP8C”,
“transaction_id”: “M5PExWlNHBBbn0FcAeb7tHIc2vCZY”,
“tender_id”: “hmL0cdcYMbFl57BeI1RqOzqPWoQZY”,
“created_at”: “2020-06-23T11:54:00Z”,
“reason”: “Doesn’t need shirts”,
“amount_money”: {
“amount”: 10710,
“currency”: “USD”
},
“status”: “APPROVED”
}
]

There is the refund from Deprecated List refunds:
{
“id”: “UGQ2klGNHUVCNWHZEp47ImZrQz93q7T6uDTjqZ8speT”,
“location_id”: “CRNKFZKBBDP8C”,
“transaction_id”: “M5PExWlNHBBbn0FcAeb7tHIc2vCZY”,
“tender_id”: “hmL0cdcYMbFl57BeI1RqOzqPWoQZY”,
“created_at”: “2020-06-23T11:54:00Z”,
“reason”: “Doesn’t need shirts”,
“amount_money”: {
“amount”: 10710,
“currency”: “USD”
},
“status”: “APPROVED”,
“processing_fee_money”: {
“amount”: 390,
“currency”: “USD”
}
}

Thanks for the feedback. Looks to be an error with our documentation after talking with the Orders team. Currently the refund object isn’t able to return that information.

The Refunds API will contain information about fees returned as part of a refund.

In general an Order object will contain information about why money was moved for (purchase, return, exchange, etc.) and the Payments and Refunds APIs will contain the details of the money movement itself – how much money, card brand, fees, etc.