using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayUserCertifyInfoPersonApplyModel Data Structure.
///
[Serializable]
public class AlipayUserCertifyInfoPersonApplyModel : AopObject
{
///
/// 用户详细地址
///
[XmlElement("address")]
public string Address { get; set; }
///
/// 用于识别是哪个业务来源
///
[XmlElement("biz_from")]
public string BizFrom { get; set; }
///
/// 证件过期时间
///
[XmlElement("cert_expired_date")]
public string CertExpiredDate { get; set; }
///
/// 证件号
///
[XmlElement("cert_no")]
public string CertNo { get; set; }
///
/// 证件类型,例如身份证类型是IDENTITY_CARD
///
[XmlElement("cert_type")]
public string CertType { get; set; }
///
/// 用户住址的城市名称
///
[XmlElement("city")]
public string City { get; set; }
///
/// 国家信息
///
[XmlElement("country")]
public string Country { get; set; }
///
/// 证件人像页图片SFS地址
///
[XmlElement("face_url")]
public string FaceUrl { get; set; }
///
/// 用户联系手机号码
///
[XmlElement("mobile")]
public string Mobile { get; set; }
///
/// 用户地址的省份信息
///
[XmlElement("province")]
public string Province { get; set; }
///
/// 男性:m,女性:f
///
[XmlElement("sex")]
public string Sex { get; set; }
///
/// 蚂蚁统一会员ID
///
[XmlElement("user_id")]
public string UserId { get; set; }
///
/// 用户姓名
///
[XmlElement("user_name")]
public string UserName { get; set; }
///
/// 国微页图片SFS地址,如果非身份证类型,可不必传(例如护照,没有此页)
///
[XmlElement("verso_url")]
public string VersoUrl { get; set; }
}
}