using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// SignerBean Data Structure. /// [Serializable] public class SignerBean : AopObject { /// /// 个人邮箱 /// [XmlElement("email")] public string Email { get; set; } /// /// 个人证件号 /// [XmlElement("id_number")] public string IdNumber { get; set; } /// /// 个人证件类型(证件号不为空时必填,详见个人证件类型说明 ) /// [XmlElement("id_type")] public string IdType { get; set; } /// /// 个人手机号 /// [XmlElement("mobile")] public string Mobile { get; set; } /// /// 个人姓名 /// [XmlElement("name")] public string Name { get; set; } /// /// 企业信息,signType=org时必填 /// [XmlElement("org")] public Org Org { get; set; } /// /// 个人唯一标识:可传入平台的个人用户id、支付宝userid、证件号、手机号、邮箱等。 /// [XmlElement("third_party_user_id")] public string ThirdPartyUserId { get; set; } } }