I'm calling an API that returns a large hash/object. I have two questions:
In order to refer to the keys/values of that hash (e.g., in a dialogue), do I have to convert the hash into a structure? (Or is there a way to access the object "directly.")
If I do have to convert the hash into a Bixby structure, is there some way to do that programatically?
Right now, I've created a whole bunch of primitives for all of the keys in the object, and then a structure with all those primitives as properties. I hope there's something that I'm missing, since the returned hash might have 100's of keys.