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