using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
///
/// AlipayOpenPublicGisQueryResponse.
///
public class AlipayOpenPublicGisQueryResponse : AopResponse
{
///
/// 精确度
///
[JsonProperty("accuracy")]
public string Accuracy { get; set; }
///
/// 经纬度所在位置
///
[JsonProperty("city")]
public string City { get; set; }
///
/// 纬度信息
///
[JsonProperty("latitude")]
public string Latitude { get; set; }
///
/// 经度信息
///
[JsonProperty("longitude")]
public string Longitude { get; set; }
///
/// 经纬度对应位置所在的省份
///
[JsonProperty("province")]
public string Province { get; set; }
}
}