ResourceSet.update() missing custom field name return value
I've noticed when using the update() function on a ResourceSet object containing Issues that when updated a custom field value, the new ResourceSet object returned by the update() function does not return the updated custom field name unless the custom field name is specified. The docs say only the custom field ID needs to be used, and while technically this is correct and still works, the update() function in particular doesn't return the custom field name.
Example with passing the following parameters to the update() function on a ResourceSet object of Issues:
{ 'custom_fields': [ { 'id': 167, 'value': 0, } ] }
returns:
{ 'custom_fields': [ { 'id': 167, 'value': 0, } ] }
but doing a fresh filter query to get the same issue(s) shows the correct return:
{ 'custom_fields': [ { 'id': 167, 'name': "Sample Field Name", 'value': 0, } ] }