I have a Json array {"foo":[{"a":"bar","b":10, "c":100}]}
How to convert it to the array of tuples Array(Tuple(String, Int64))
where String
is a
and Int64
is b
?
I have a Json array {"foo":[{"a":"bar","b":10, "c":100}]}
How to convert it to the array of tuples Array(Tuple(String, Int64))
where String
is a
and Int64
is b
?