Not sure how I'd model this with moshi ```{ "it...
# squarelibraries
c
Not sure how I'd model this with moshi
Copy code
{
  "items": [
    { "x": { // bunch of properties} },
    { "y": { // bunch of properties, identical to above} },
    { "z": { // ^^^} },
  ]
}
So my problem is because I seemingly have the same Type going into items array, but I want to be able to dynamically chance the name of the item (x,y,z) at runtime, but
name
isn't a property... its the object name itself?