For this i want to get all the vehicles as a list of vehicle objects
FirebaseResponse response = await client.GetAsync("Vehicles/");
List<Data> vehicles = response.ResultAs<List<Data>>().ToList();
this gives a JSON serialization exception. The data class is as follows:
internal class Data
{
public string tag { get; set; }
public string vehicleNo { get; set; }
}