How to create the model for this kind of json, have number in properties, date as object etc...
{
"Meta Data": {
"1. Information": "Daily Prices (open, high, low, close) and Volumes",
"2. Symbol": "AAP",
"3. Last Refreshed": "2018-03-23",
"4. Output Size": "Compact",
"5. Time Zone": "US/Eastern"
},
"Time Series (Daily)": {
"2018-03-23": {
"1. open": "112.4100",
"2. high": "113.2600",
"3. low": "110.3400",
"4. close": "110.8400",
"5. volume": "1085896"
},
"2018-03-22": {
"1. open": "114.0200",
"2. high": "115.1400",
"3. low": "111.6300",
"4. close": "111.7100",
"5. volume": "1038170"
}
}
}
See where I will get this kind of json:
https://www.alphavantage.co/query?function=TIME_SERIES_DAILY&symbol=MSFT&apikey=demo
Dictionary<string,Dictionary<string,Dictionary<string,string>>>
. Ouch. – Jake H