I return data from the following:
var result = await client.GetAsync("https://management.azure.com/subscriptions/c43vbhu-
XXXX-XXXX--2b83a074c23f/providers/Microsoft.Consumption/usageDetails?startDate=2020-08-
01&endDate=2020-08-05&$top=1000&api-version=2019-10-01");
string data = result.Content.ReadAsStringAsync().Result;
The data is returned but how can I deserialize this into an object so I can traverse the data and do some calculations?
What is the class that I need to serialize to?