NewGaoKaoApi/PaymentSDK/AliPay/Response/AlipayUserAddressQueryRespo...

66 lines
1.7 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayUserAddressQueryResponse.
/// </summary>
public class AlipayUserAddressQueryResponse : AopResponse
{
/// <summary>
/// 地址详情
/// </summary>
[XmlElement("address")]
public string Address { get; set; }
/// <summary>
/// 收货地址地址码。可能对应市级,也可能对应区级
/// </summary>
[XmlElement("address_code")]
public string AddressCode { get; set; }
/// <summary>
/// 收货地址区名
/// </summary>
[XmlElement("area")]
public string Area { get; set; }
/// <summary>
/// 收货地址城市名
/// </summary>
[XmlElement("city")]
public string City { get; set; }
/// <summary>
/// 收货地址经纬度
/// </summary>
[XmlElement("coordinate")]
public string Coordinate { get; set; }
/// <summary>
/// 是否默认收货地址。TF否。
/// </summary>
[XmlElement("default_user_address")]
public string DefaultUserAddress { get; set; }
/// <summary>
/// 收货人姓名
/// </summary>
[XmlElement("fullname")]
public string Fullname { get; set; }
/// <summary>
/// 收货人手机号
/// </summary>
[XmlElement("mobile")]
public string Mobile { get; set; }
/// <summary>
/// 收货地址省名
/// </summary>
[XmlElement("prov")]
public string Prov { get; set; }
}
}