I have the below interface and jsonapi response snippet. I need to serialize the property as shown into the camelcased property in the interface. Is there some field in `schema` that I can set to define the camelcased attribute? Do I need to use mutations? Any pointers would be helpful. Thanks! ``` export interface Plan { logReadURL: string; } // This json response { .... "log-read-url": "foooooo" } ```