Is it possible to format how an object is returned as JSON from a PageMethod? ie. removing the first "d" element from the data, without writing the JSON from scratch.
From { "d": { "name": "bob", "email": "bob@bob.com" } }
To { "name": "bob", email: "bob@bob.com" }
