Help trying to extract object attribute

Looking at the example msg you posted, the name of the property has parentheses on the end

i.e. not a valid dot notation variable name so...

To access that in pure js you would need to use object['name-of property ()'] to access it.

Hopefully that gives you a clue