using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// InsAddressee Data Structure. /// [Serializable] public class InsAddressee : AopObject { /// /// 收件人详细地址 /// [JsonProperty("address")] public string Address { get; set; } /// /// 区域编码 /// [JsonProperty("address_code")] public string AddressCode { get; set; } /// /// 联系地址-城区 /// [JsonProperty("area")] public string Area { get; set; } /// /// 联系地址-城市 /// [JsonProperty("city")] public string City { get; set; } /// /// 联系方式(mobile登录号) /// [JsonProperty("mobile")] public string Mobile { get; set; } /// /// 收件人姓名 /// [JsonProperty("name")] public string Name { get; set; } /// /// 联系地址-电话 /// [JsonProperty("phone")] public string Phone { get; set; } /// /// 联系地址-省份 /// [JsonProperty("province")] public string Province { get; set; } /// /// 联系地址-邮编 /// [JsonProperty("zip")] public string Zip { get; set; } } }