How to parse this nested List json that has no keys on inner list objects?
I'm using an price API that returns a nested list {"prices":[ [1676505600000,24307.875101631602], [1676592000000,23756.907281577434] ], "market_caps":[ [1676505600000,468820317786.9533], [1676592000000,459293697174.9459], [1676678400000,475194230168.09973] ] } I can't figure out how to structure my Java Object so it's successfully parsed. I've tried public class QueryResult {…