ここに私のクラス宣言があります
public class PlacesAPIResponse
{
public string formatted_address { get; set; }
public Geometry geometry { get; set; }
public Location location { get; set; }
public string icon { get; set; }
public Guid id { get; set; }
public string name { get; set; }
public string reference { get; set; }
public string[] types { get; set; }
}
public class Geometry
{
Location location { get; set; }
}
public class Location
{
public double lat { get; set; }
public double lon { get; set; }
}
このようにアクセスしようとすると、「保護レベルのためにアクセスできません」と表示されます
PlacesAPIResponse response = new PlacesAPIResponse();
string lon = response.geometry.location.lon;
私は何が間違っているのでしょうか?