$ "properties": [
{
"name": "Armour",
"values": [
[
"258",
1
]
],
"displayMode": 0
},...]
I have this JSON array.
I use json4s and scala for parse this code.
case class Property(
name: String,
values: Option[Option[(String, Int)]] = None,
displayMode: Int
)
I write case class for this block, but I get "None" when get values...
I need get "258" in this example. What am I doing wrong?